Skip to content

Commit 3cf1590

Browse files
Bump actions/cache from 5 to 6
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>
1 parent adbe901 commit 3cf1590

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/haskell-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ jobs:
187187
$CABAL v2-build $ARG_COMPILER $ARG_TESTS $ARG_BENCH --dry-run all
188188
cabal-plan
189189
- name: restore cache
190-
uses: actions/cache/restore@v5
190+
uses: actions/cache/restore@v6
191191
with:
192192
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}
193193
path: ~/.cabal/store
@@ -218,7 +218,7 @@ jobs:
218218
$CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks all
219219
- name: save cache
220220
if: always()
221-
uses: actions/cache/save@v5
221+
uses: actions/cache/save@v6
222222
with:
223223
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}
224224
path: ~/.cabal/store

0 commit comments

Comments
 (0)