Skip to content

Commit 40fca57

Browse files
Bump actions/cache from 4 to 5 (#8109)
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' 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 f7b4b07 commit 40fca57

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107

108108
- name: Restore rewatch build cache
109109
id: rewatch-build-cache
110-
uses: actions/cache@v4
110+
uses: actions/cache@v5
111111
with:
112112
path: rewatch/target
113113
key: rewatch-build-v3-${{ matrix.rust-target }}-${{ hashFiles('rewatch/src/**', 'rewatch/Cargo.lock') }}
@@ -161,7 +161,7 @@ jobs:
161161

162162
- name: Restore OPAM environment
163163
id: cache-opam-env
164-
uses: actions/cache/restore@v4
164+
uses: actions/cache/restore@v5
165165
with:
166166
path: |
167167
${{ runner.tool_cache }}/opam
@@ -197,7 +197,7 @@ jobs:
197197

198198
- name: Cache OPAM environment
199199
if: steps.cache-opam-env.outputs.cache-hit != 'true'
200-
uses: actions/cache/save@v4
200+
uses: actions/cache/save@v5
201201
with:
202202
path: |
203203
${{ runner.tool_cache }}/opam
@@ -255,7 +255,7 @@ jobs:
255255
- name: Restore compiler build state
256256
if: github.base_ref == 'master' || github.ref == 'refs/heads/master'
257257
id: compiler-build-state
258-
uses: actions/cache/restore@v4
258+
uses: actions/cache/restore@v5
259259
with:
260260
path: |
261261
C:\.cache\dune
@@ -285,7 +285,7 @@ jobs:
285285

286286
- name: Save compiler build state
287287
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
288-
uses: actions/cache/save@v4
288+
uses: actions/cache/save@v5
289289
with:
290290
path: |
291291
C:\.cache\dune
@@ -298,7 +298,7 @@ jobs:
298298

299299
- name: Restore ninja build cache
300300
id: ninja-build-cache
301-
uses: actions/cache@v4
301+
uses: actions/cache@v5
302302
with:
303303
path: ninja/ninja${{ matrix.exe-suffix }}
304304
key: ninja-build-v2-${{ matrix.os }}-${{ hashFiles('ninja/src/**') }}
@@ -386,7 +386,7 @@ jobs:
386386
#
387387
# - name: Restore previous benchmark data
388388
# if: matrix.benchmarks
389-
# uses: actions/cache/restore@v4
389+
# uses: actions/cache/restore@v5
390390
# with:
391391
# path: ./tests/benchmark-cache
392392
# key: syntax-benchmark-v1
@@ -407,7 +407,7 @@ jobs:
407407

408408
# - name: Save benchmark data as new baseline
409409
# if: matrix.benchmarks && github.ref == 'refs/heads/master'
410-
# uses: actions/cache/save@v4
410+
# uses: actions/cache/save@v5
411411
# with:
412412
# path: ./tests/benchmark-cache
413413
# key: syntax-benchmark-v1

0 commit comments

Comments
 (0)