Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/github-page.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
# we need unpublished `cabal` version to support sublibraries
cabal-version: 'head'

- uses: actions/cache@v5
- uses: actions/cache@v6
name: Cache cabal store
with:
path: ${{ steps.setup-haskell.outputs.cabal-store }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,15 @@ jobs:
cat dist-newstyle/cache/plan.json | jq -r '."install-plan"[].id' | sort | uniq > dependencies.txt
echo "weeknum=$(/bin/date -u "+%W")" >> $GITHUB_OUTPUT

- uses: actions/cache/restore@v5
- uses: actions/cache/restore@v6
name: "Restore cabal store"
id: restore-cabal-store
with:
path: ${{ runner.os == 'Windows' && steps.win-setup-haskell.outputs.cabal-store || steps.setup-haskell.outputs.cabal-store }}
key: cache-dependencies-${{ env.CACHE_VERSION }}-${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('dependencies.txt') }}
restore-keys: cache-dependencies-${{ env.CACHE_VERSION }}-${{ runner.os }}-${{ matrix.ghc }}

- uses: actions/cache@v5
- uses: actions/cache@v6
name: "Cache `dist-newstyle`"
with:
path: |
Expand All @@ -89,7 +89,7 @@ jobs:
run: |
cabal build --only-dependencies all

- uses: actions/cache/save@v5
- uses: actions/cache/save@v6
name: "Save cabal store"
with:
path: ${{ runner.os == 'Windows' && steps.win-setup-haskell.outputs.cabal-store || steps.setup-haskell.outputs.cabal-store }}
Expand Down
Loading