Skip to content

Commit 884b7f1

Browse files
Bump actions/cache from 3 to 4 (#840)
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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 052afa2 commit 884b7f1

8 files changed

+16
-16
lines changed

.github/workflows/canary.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
distribution: corretto
7676
java-version: '17'
7777
- name: Cache (Java)
78-
uses: actions/cache@v3
78+
uses: actions/cache@v4
7979
if: ${{ matrix.language == 'java' }}
8080
with:
8181
path: |
@@ -90,7 +90,7 @@ jobs:
9090
with:
9191
node-version: '16'
9292
- name: Cache (NodeJS)
93-
uses: actions/cache@v3
93+
uses: actions/cache@v4
9494
if: ${{ matrix.language == 'nodejs' }}
9595
with:
9696
path: |
@@ -104,7 +104,7 @@ jobs:
104104
with:
105105
python-version: '3.x'
106106
- name: Cache (Python)
107-
uses: actions/cache@v3
107+
uses: actions/cache@v4
108108
if: ${{ matrix.language == 'python' }}
109109
with:
110110
path: |

.github/workflows/docker-build-lambda-soak.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Set up Docker Buildx
2828
uses: docker/setup-buildx-action@v3
2929
- name: Cache Docker layers
30-
uses: actions/cache@v3
30+
uses: actions/cache@v4
3131
with:
3232
path: /tmp/.buildx-cache
3333
key: ${{ runner.os }}-buildx-${{ github.sha }}

.github/workflows/main-build-java.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
distribution: corretto
9393
java-version: '17'
9494
- name: Cache (Java)
95-
uses: actions/cache@v3
95+
uses: actions/cache@v4
9696
with:
9797
path: |
9898
~/go/pkg/mod

.github/workflows/main-build-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
with:
3737
python-version: '3.x'
3838
- name: Cache (Python)
39-
uses: actions/cache@v3
39+
uses: actions/cache@v4
4040
with:
4141
path: |
4242
~/go/pkg/mod

.github/workflows/main-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
with:
4747
node-version: '16'
4848
- name: Cache (NodeJS)
49-
uses: actions/cache@v3
49+
uses: actions/cache@v4
5050
if: ${{ matrix.language == 'nodejs' }}
5151
with:
5252
path: |

.github/workflows/pr-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
distribution: corretto
3333
java-version: '17'
3434
- name: Cache (Java)
35-
uses: actions/cache@v3
35+
uses: actions/cache@v4
3636
if: ${{ matrix.language == 'java' }}
3737
with:
3838
path: |
@@ -47,7 +47,7 @@ jobs:
4747
with:
4848
node-version: '16'
4949
- name: Cache (NodeJS)
50-
uses: actions/cache@v3
50+
uses: actions/cache@v4
5151
if: ${{ matrix.language == 'nodejs' }}
5252
with:
5353
path: |
@@ -61,7 +61,7 @@ jobs:
6161
with:
6262
python-version: '3.x'
6363
- name: Cache (Python)
64-
uses: actions/cache@v3
64+
uses: actions/cache@v4
6565
if: ${{ matrix.language == 'python' }}
6666
with:
6767
path: |

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ jobs:
220220
distribution: corretto
221221
java-version: '17'
222222
- name: Cache (Java)
223-
uses: actions/cache@v3
223+
uses: actions/cache@v4
224224
if: ${{ env.TEST_LANGUAGE == 'java' }}
225225
with:
226226
path: |
@@ -235,7 +235,7 @@ jobs:
235235
with:
236236
node-version: '16'
237237
- name: Cache (NodeJS)
238-
uses: actions/cache@v3
238+
uses: actions/cache@v4
239239
if: ${{ env.TEST_LANGUAGE == 'nodejs' }}
240240
with:
241241
path: |
@@ -249,7 +249,7 @@ jobs:
249249
with:
250250
python-version: '3.x'
251251
- name: Cache (Python)
252-
uses: actions/cache@v3
252+
uses: actions/cache@v4
253253
if: ${{ env.TEST_LANGUAGE == 'python' }}
254254
with:
255255
path: |

.github/workflows/soaking.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
distribution: corretto
7676
java-version: '17'
7777
- name: Cache (Java)
78-
uses: actions/cache@v3
78+
uses: actions/cache@v4
7979
if: ${{ matrix.language == 'java' }}
8080
with:
8181
path: |
@@ -100,7 +100,7 @@ jobs:
100100
with:
101101
node-version: '16'
102102
- name: Cache (NodeJS)
103-
uses: actions/cache@v3
103+
uses: actions/cache@v4
104104
if: ${{ matrix.language == 'nodejs' }}
105105
with:
106106
path: |
@@ -114,7 +114,7 @@ jobs:
114114
with:
115115
python-version: '3.x'
116116
- name: Cache (Python)
117-
uses: actions/cache@v3
117+
uses: actions/cache@v4
118118
if: ${{ matrix.language == 'python' }}
119119
with:
120120
path: |

0 commit comments

Comments
 (0)