We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ce14a7 commit b411f87Copy full SHA for b411f87
.github/workflows/haskell.yml
@@ -23,7 +23,7 @@ jobs:
23
# The last step generates dist-newstyle/cache/plan.json for the cache key.
24
25
- name: Restore cached dependencies
26
- uses: actions/cache/restore@v3
+ uses: actions/cache/restore@v4
27
id: cache
28
env:
29
key: ${{ runner.os }}-ghc-${{ steps.setup.outputs.ghc-version }}-cabal-${{ steps.setup.outputs.cabal-version }}
@@ -39,7 +39,7 @@ jobs:
39
40
# Cache dependencies already here, so that we do not have to rebuild them should the subsequent steps fail.
41
- name: Save cached dependencies
42
- uses: actions/cache/save@v3
+ uses: actions/cache/save@v4
43
# If we had an exact cache hit, trying to save the cache would error because of key clash.
44
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
45
with:
0 commit comments