Skip to content

Commit

Permalink
Merge pull request #11 from turion/dependabot/github_actions/actions/…
Browse files Browse the repository at this point in the history
…cache-4

Bump actions/cache from 3 to 4
  • Loading branch information
turion authored Jan 18, 2024
2 parents 9b3f6b9 + 8764006 commit a825567
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
# The last step generates dist-newstyle/cache/plan.json for the cache key.

- name: Restore cached dependencies
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
id: cache
env:
key: ${{ runner.os }}-ghc-${{ steps.setup.outputs.ghc-version }}-cabal-${{ steps.setup.outputs.cabal-version }}
Expand All @@ -86,7 +86,7 @@ jobs:

# Cache dependencies already here, so that we do not have to rebuild them should the subsequent steps fail.
- name: Save cached dependencies
uses: actions/cache/save@v3
uses: actions/cache/save@v4
# If we had an exact cache hit, trying to save the cache would error because of key clash.
if: steps.cache.outputs.cache-hit != 'true'
with:
Expand Down

0 comments on commit a825567

Please sign in to comment.