Skip to content

Commit 33c8cbc

Browse files
Update actions/cache action to v5 (#136)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 6b73b68 commit 33c8cbc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/bump.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
- name: Cache cabal store
2424
id: cache
25-
uses: actions/cache/restore@v4
25+
uses: actions/cache/restore@v5
2626
with:
2727
key: bump-action-cabal-store-${{ runner.os }}-${{ github.sha }}
2828
path: ~/.cabal/store
@@ -100,7 +100,7 @@ jobs:
100100
cabal build --only-dependencies --enable-tests --write-ghc-environment-files=always ${{ env.CABAL_FLAGS }}
101101
102102
- name: Save cache
103-
uses: actions/cache/save@v4
103+
uses: actions/cache/save@v5
104104
if: always()
105105
with:
106106
key: ${{ steps.cache.outputs.cache-primary-key }}

.github/workflows/haskell-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ jobs:
227227
$CABAL v2-build $ARG_COMPILER $ARG_TESTS $ARG_BENCH --dry-run all
228228
cabal-plan
229229
- name: restore cache
230-
uses: actions/cache/restore@v4
230+
uses: actions/cache/restore@v5
231231
with:
232232
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}
233233
path: ~/.cabal/store
@@ -296,7 +296,7 @@ jobs:
296296
if [ $((HCNUMVER < 81000)) -ne 0 ] ; then $CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='servant ==0.16.*' all ; fi
297297
- name: save cache
298298
if: always()
299-
uses: actions/cache/save@v4
299+
uses: actions/cache/save@v5
300300
with:
301301
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}
302302
path: ~/.cabal/store

0 commit comments

Comments
 (0)