Skip to content

Commit 868bd08

Browse files
Bump actions/cache from 5 to 6 (#8489)
Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 30cd653 commit 868bd08

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111

112112
- name: Restore rewatch build cache
113113
id: rewatch-build-cache
114-
uses: actions/cache@v5
114+
uses: actions/cache@v6
115115
with:
116116
path: rewatch/target
117117
key: rewatch-build-v3-${{ matrix.rust-target }}-${{ hashFiles('rewatch/src/**', 'rewatch/Cargo.lock') }}
@@ -165,7 +165,7 @@ jobs:
165165

166166
- name: Restore OPAM environment
167167
id: cache-opam-env
168-
uses: actions/cache/restore@v5
168+
uses: actions/cache/restore@v6
169169
with:
170170
path: |
171171
${{ runner.tool_cache }}/opam
@@ -201,7 +201,7 @@ jobs:
201201

202202
- name: Cache OPAM environment
203203
if: steps.cache-opam-env.outputs.cache-hit != 'true'
204-
uses: actions/cache/save@v5
204+
uses: actions/cache/save@v6
205205
with:
206206
path: |
207207
${{ runner.tool_cache }}/opam
@@ -259,7 +259,7 @@ jobs:
259259
- name: Restore compiler build state
260260
if: github.base_ref == 'master' || github.ref == 'refs/heads/master'
261261
id: compiler-build-state
262-
uses: actions/cache/restore@v5
262+
uses: actions/cache/restore@v6
263263
with:
264264
path: |
265265
C:\.cache\dune
@@ -284,7 +284,7 @@ jobs:
284284

285285
- name: Save compiler build state
286286
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
287-
uses: actions/cache/save@v5
287+
uses: actions/cache/save@v6
288288
with:
289289
path: |
290290
C:\.cache\dune
@@ -348,7 +348,7 @@ jobs:
348348
#
349349
# - name: Restore previous benchmark data
350350
# if: matrix.benchmarks
351-
# uses: actions/cache/restore@v5
351+
# uses: actions/cache/restore@v6
352352
# with:
353353
# path: ./tests/benchmark-cache
354354
# key: syntax-benchmark-v1
@@ -369,7 +369,7 @@ jobs:
369369

370370
# - name: Save benchmark data as new baseline
371371
# if: matrix.benchmarks && github.ref == 'refs/heads/master'
372-
# uses: actions/cache/save@v5
372+
# uses: actions/cache/save@v6
373373
# with:
374374
# path: ./tests/benchmark-cache
375375
# key: syntax-benchmark-v1

.github/workflows/coverage.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
# and the cargo build when the rewatch sources haven't changed.
5252
- name: Restore rewatch build cache
5353
id: rewatch-build-cache
54-
uses: actions/cache@v5
54+
uses: actions/cache@v6
5555
with:
5656
path: rewatch/target
5757
key: rewatch-build-v3-${{ env.RUST_TARGET }}-${{ hashFiles('rewatch/src/**', 'rewatch/Cargo.lock') }}
@@ -89,7 +89,7 @@ jobs:
8989

9090
- name: Restore OPAM environment
9191
id: cache-opam-env
92-
uses: actions/cache/restore@v5
92+
uses: actions/cache/restore@v6
9393
with:
9494
path: |
9595
${{ runner.tool_cache }}/opam
@@ -127,7 +127,7 @@ jobs:
127127
# still get full restore from the latest master-saved cache.
128128
- name: Save OPAM environment
129129
if: steps.cache-opam-env.outputs.cache-hit != 'true' && github.event_name == 'push' && github.ref == 'refs/heads/master'
130-
uses: actions/cache/save@v5
130+
uses: actions/cache/save@v6
131131
with:
132132
path: |
133133
${{ runner.tool_cache }}/opam
@@ -168,7 +168,7 @@ jobs:
168168
- name: Restore coverage build state
169169
if: github.base_ref == 'master' || github.ref == 'refs/heads/master'
170170
id: coverage-build-state
171-
uses: actions/cache/restore@v5
171+
uses: actions/cache/restore@v6
172172
with:
173173
path: |
174174
~/.cache/dune
@@ -191,7 +191,7 @@ jobs:
191191

192192
- name: Save coverage build state
193193
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
194-
uses: actions/cache/save@v5
194+
uses: actions/cache/save@v6
195195
with:
196196
path: |
197197
~/.cache/dune

0 commit comments

Comments
 (0)