Skip to content

Commit 8f676cb

Browse files
Bump actions/cache from 4 to 5
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>
1 parent 350fd8a commit 8f676cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ jobs:
179179
$CABAL v2-build $ARG_COMPILER $ARG_TESTS $ARG_BENCH --dry-run all
180180
cabal-plan
181181
- name: restore cache
182-
uses: actions/cache/restore@v4
182+
uses: actions/cache/restore@v5
183183
with:
184184
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}
185185
path: ~/.cabal/store
@@ -210,7 +210,7 @@ jobs:
210210
$CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks all
211211
- name: save cache
212212
if: always()
213-
uses: actions/cache/save@v4
213+
uses: actions/cache/save@v5
214214
with:
215215
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}
216216
path: ~/.cabal/store

0 commit comments

Comments
 (0)