Skip to content

Commit

Permalink
Fix Cabal store location in CI cache
Browse files Browse the repository at this point in the history
Newer versions of Cabal no longer use ~/.cabal/
unless it's already present (XDG).
  • Loading branch information
samhh committed Dec 16, 2023
1 parent 168ea1e commit 0e3e28f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/cabal-cache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ runs:
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.cabal/store
path: ~/.local/state/cabal/store/
key: cabal-${{ runner.os }}-${{ hashFiles('cabal.project.freeze') }}
restore-keys: |
cabal-${{ runner.os }}
Expand Down

0 comments on commit 0e3e28f

Please sign in to comment.