Skip to content

Commit

Permalink
Bump actions/cache from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3...v4)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] committed Feb 13, 2024
1 parent cb9f316 commit d444461
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
distribution: corretto
java-version: '17'
- name: Cache (Java)
uses: actions/cache@v3
uses: actions/cache@v4
if: ${{ matrix.language == 'java' }}
with:
path: |
Expand All @@ -90,7 +90,7 @@ jobs:
with:
node-version: '16'
- name: Cache (NodeJS)
uses: actions/cache@v3
uses: actions/cache@v4
if: ${{ matrix.language == 'nodejs' }}
with:
path: |
Expand All @@ -104,7 +104,7 @@ jobs:
with:
python-version: '3.x'
- name: Cache (Python)
uses: actions/cache@v3
uses: actions/cache@v4
if: ${{ matrix.language == 'python' }}
with:
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-build-lambda-soak.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Cache Docker layers
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main-build-python311.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
with:
python-version: '3.x'
- name: Cache (Python)
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/go/pkg/mod
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/main-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
distribution: corretto
java-version: '17'
- name: Cache (Java)
uses: actions/cache@v3
uses: actions/cache@v4
if: ${{ matrix.language == 'java' }}
with:
path: |
Expand All @@ -107,7 +107,7 @@ jobs:
with:
node-version: '16'
- name: Cache (NodeJS)
uses: actions/cache@v3
uses: actions/cache@v4
if: ${{ matrix.language == 'nodejs' }}
with:
path: |
Expand All @@ -121,7 +121,7 @@ jobs:
with:
python-version: '3.x'
- name: Cache (Python)
uses: actions/cache@v3
uses: actions/cache@v4
if: ${{ matrix.language == 'python' }}
with:
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
distribution: corretto
java-version: '17'
- name: Cache (Java)
uses: actions/cache@v3
uses: actions/cache@v4
if: ${{ matrix.language == 'java' }}
with:
path: |
Expand All @@ -47,7 +47,7 @@ jobs:
with:
node-version: '16'
- name: Cache (NodeJS)
uses: actions/cache@v3
uses: actions/cache@v4
if: ${{ matrix.language == 'nodejs' }}
with:
path: |
Expand All @@ -61,7 +61,7 @@ jobs:
with:
python-version: '3.x'
- name: Cache (Python)
uses: actions/cache@v3
uses: actions/cache@v4
if: ${{ matrix.language == 'python' }}
with:
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ jobs:
distribution: corretto
java-version: '17'
- name: Cache (Java)
uses: actions/cache@v3
uses: actions/cache@v4
if: ${{ env.TEST_LANGUAGE == 'java' }}
with:
path: |
Expand All @@ -235,7 +235,7 @@ jobs:
with:
node-version: '16'
- name: Cache (NodeJS)
uses: actions/cache@v3
uses: actions/cache@v4
if: ${{ env.TEST_LANGUAGE == 'nodejs' }}
with:
path: |
Expand All @@ -249,7 +249,7 @@ jobs:
with:
python-version: '3.x'
- name: Cache (Python)
uses: actions/cache@v3
uses: actions/cache@v4
if: ${{ env.TEST_LANGUAGE == 'python' }}
with:
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/soaking.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
distribution: corretto
java-version: '17'
- name: Cache (Java)
uses: actions/cache@v3
uses: actions/cache@v4
if: ${{ matrix.language == 'java' }}
with:
path: |
Expand All @@ -100,7 +100,7 @@ jobs:
with:
node-version: '16'
- name: Cache (NodeJS)
uses: actions/cache@v3
uses: actions/cache@v4
if: ${{ matrix.language == 'nodejs' }}
with:
path: |
Expand All @@ -114,7 +114,7 @@ jobs:
with:
python-version: '3.x'
- name: Cache (Python)
uses: actions/cache@v3
uses: actions/cache@v4
if: ${{ matrix.language == 'python' }}
with:
path: |
Expand Down

0 comments on commit d444461

Please sign in to comment.