Skip to content

Commit e1c6919

Browse files
Bump actions/cache from 4 to 5 (#271)
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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent d570679 commit e1c6919

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ jobs:
280280
$CABAL v2-build $ARG_COMPILER $ARG_TESTS $ARG_BENCH --dry-run all
281281
cabal-plan
282282
- name: restore cache
283-
uses: actions/cache/restore@v4
283+
uses: actions/cache/restore@v5
284284
with:
285285
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}
286286
path: ~/.cabal/store
@@ -307,7 +307,7 @@ jobs:
307307
$CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks all
308308
- name: save cache
309309
if: always()
310-
uses: actions/cache/save@v4
310+
uses: actions/cache/save@v5
311311
with:
312312
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}
313313
path: ~/.cabal/store

.github/workflows/no-text.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
ghc-version: ${{ matrix.ghc }}
2828
- name: Update cabal package database
2929
run: cabal update
30-
- uses: actions/cache@v4
30+
- uses: actions/cache@v5
3131
name: Cache cabal stuff
3232
with:
3333
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}

0 commit comments

Comments
 (0)