Skip to content

Commit cf764e1

Browse files
Bump actions/cache from 3 to 4
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent fe13617 commit cf764e1

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
@@ -191,7 +191,7 @@ jobs:
191191
$CABAL v2-build $ARG_COMPILER $ARG_TESTS $ARG_BENCH --dry-run all
192192
cabal-plan
193193
- name: restore cache
194-
uses: actions/cache/restore@v3
194+
uses: actions/cache/restore@v4
195195
with:
196196
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}
197197
path: ~/.cabal/store
@@ -221,7 +221,7 @@ jobs:
221221
rm -f cabal.project.local
222222
$CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks all
223223
- name: save cache
224-
uses: actions/cache/save@v3
224+
uses: actions/cache/save@v4
225225
if: always()
226226
with:
227227
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}

0 commit comments

Comments
 (0)