Skip to content

Commit 7e63f2c

Browse files
dependabot[bot]mmhat
authored andcommitted
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 0abc74a commit 7e63f2c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ jobs:
146146
run: |
147147
$CABAL v2-update -v
148148
- name: cache (tools)
149-
uses: actions/cache/restore@v4
149+
uses: actions/cache/restore@v5
150150
with:
151151
key: ${{ runner.os }}-${{ matrix.compiler }}-tools-54f36d55
152152
path: ~/.haskell-ci-tools
@@ -165,7 +165,7 @@ jobs:
165165
if [ $((HCNUMVER < 91000)) -ne 0 ] ; then doctest --version ; fi
166166
- name: save cache (tools)
167167
if: always()
168-
uses: actions/cache/save@v4
168+
uses: actions/cache/save@v5
169169
with:
170170
key: ${{ runner.os }}-${{ matrix.compiler }}-tools-54f36d55
171171
path: ~/.haskell-ci-tools
@@ -210,7 +210,7 @@ jobs:
210210
$CABAL v2-build $ARG_COMPILER $ARG_TESTS $ARG_BENCH --dry-run all
211211
cabal-plan
212212
- name: restore cache
213-
uses: actions/cache/restore@v4
213+
uses: actions/cache/restore@v5
214214
with:
215215
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}
216216
path: ~/.cabal/store
@@ -245,7 +245,7 @@ jobs:
245245
$CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks all
246246
- name: save cache
247247
if: always()
248-
uses: actions/cache/save@v4
248+
uses: actions/cache/save@v5
249249
with:
250250
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}
251251
path: ~/.cabal/store

0 commit comments

Comments
 (0)