Skip to content

Commit 813dd34

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] <[email protected]>
1 parent 591c1d5 commit 813dd34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
cabal build all --dry-run
5555
5656
- name: Restore cached dependencies
57-
uses: actions/cache/restore@v4
57+
uses: actions/cache/restore@v5
5858
id: cache
5959
env:
6060
key: ${{ runner.os }}-ghc-${{ steps.setup.outputs.ghc-version }}-cabal-${{ steps.setup.outputs.cabal-version }}
@@ -67,7 +67,7 @@ jobs:
6767
if: steps.cache.outputs.cache-hit != 'true'
6868
run: cabal build all --only-dependencies
6969
- name: Save cached dependencies
70-
uses: actions/cache/save@v4
70+
uses: actions/cache/save@v5
7171
if: steps.cache.outputs.cache-hit != 'true'
7272
with:
7373
path: ${{ steps.setup.outputs.cabal-store }}

0 commit comments

Comments
 (0)