Skip to content

Commit 388907d

Browse files
Bump actions/cache from 3 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...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] <support@github.com>
1 parent 8ce1a13 commit 388907d

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
@@ -253,7 +253,7 @@ jobs:
253253
$CABAL v2-build $ARG_COMPILER $ARG_TESTS $ARG_BENCH --dry-run all
254254
cabal-plan
255255
- name: restore cache
256-
uses: actions/cache/restore@v3
256+
uses: actions/cache/restore@v5
257257
with:
258258
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}
259259
path: ~/.cabal/store
@@ -283,7 +283,7 @@ jobs:
283283
rm -f cabal.project.local
284284
$CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks all
285285
- name: save cache
286-
uses: actions/cache/save@v3
286+
uses: actions/cache/save@v5
287287
if: always()
288288
with:
289289
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}

0 commit comments

Comments
 (0)