Skip to content

Commit 448b3e4

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 8586afd commit 448b3e4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ jobs:
265265
$CABAL v2-build $ARG_COMPILER $ARG_TESTS $ARG_BENCH --dry-run all
266266
cabal-plan
267267
- name: restore cache
268-
uses: actions/cache/restore@v4
268+
uses: actions/cache/restore@v5
269269
with:
270270
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}
271271
path: ~/.cabal/store
@@ -296,7 +296,7 @@ jobs:
296296
$CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks all
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

.github/workflows/stack.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
enable-stack: true
106106

107107
- name: Restore cache dependencies
108-
uses: actions/cache/restore@v4
108+
uses: actions/cache/restore@v5
109109
id: cache
110110
env:
111111
key: ${{ runner.os }}-stack-${{ steps.setup.outputs.stack-version }}-ghc-${{ steps.setup.outputs.ghc-version }}
@@ -132,7 +132,7 @@ jobs:
132132
stack exec ${ARGS} -- fix-whitespace --check
133133
134134
- name: Cache dependencies
135-
uses: actions/cache/save@v4
135+
uses: actions/cache/save@v5
136136
if: always() && steps.cache.outputs.cache-hit != 'true'
137137
with:
138138
path: ${{ steps.setup.outputs.stack-root }}

0 commit comments

Comments
 (0)