Skip to content

Commit f3f0b99

Browse files
Bump actions/cache from 3 to 4
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]>
1 parent f69525c commit f3f0b99

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
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: '14'
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-python311.yml

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

.github/workflows/main-build.yml

Lines changed: 3 additions & 3 deletions
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
if: ${{ matrix.language == 'java' }}
9797
with:
9898
path: |
@@ -107,7 +107,7 @@ jobs:
107107
with:
108108
node-version: '14'
109109
- name: Cache (NodeJS)
110-
uses: actions/cache@v3
110+
uses: actions/cache@v4
111111
if: ${{ matrix.language == 'nodejs' }}
112112
with:
113113
path: |
@@ -121,7 +121,7 @@ jobs:
121121
with:
122122
python-version: '3.x'
123123
- name: Cache (Python)
124-
uses: actions/cache@v3
124+
uses: actions/cache@v4
125125
if: ${{ matrix.language == 'python' }}
126126
with:
127127
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: '14'
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: '14'
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: '14'
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)