Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
- name: update cabal index
run: "$CABAL v2-update -v"
- name: "cache (tools)"
uses: "actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684"
uses: "actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830"
with:
key: "${{ runner.os }}-${{ matrix.ghc }}-tools-ac1dc7e1"
path: "~/.haskell-ci-tools"
Expand All @@ -115,7 +115,7 @@ jobs:
doctest --version
- if: "always()"
name: "save cache (tools)"
uses: "actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684"
uses: "actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830"
with:
key: "${{ runner.os }}-${{ matrix.ghc }}-tools-ac1dc7e1"
path: "~/.haskell-ci-tools"
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
$CABAL v2-build $ARG_COMPILER $ARG_TESTS $ARG_BENCH --dry-run all
cabal-plan
- name: restore cache
uses: "actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684"
uses: "actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830"
with:
key: "${{ runner.os }}-${{ matrix.ghc }}-${{ github.sha }}"
path: "~/.cabal/store"
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
$CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks all
- if: "always()"
name: save cache
uses: "actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684"
uses: "actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830"
with:
key: "${{ runner.os }}-${{ matrix.ghc }}-${{ github.sha }}"
path: "~/.cabal/store"
Expand Down