Skip to content

Commit 76a44b9

Browse files
build(deps): bump actions/cache from 4 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 54fde49 commit 76a44b9

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/benchmarks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,14 @@ jobs:
6767
cabal build all --dry-run
6868
cat dist-newstyle/cache/plan.json | jq -L .github/workflows/jq-install-plan | sort | uniq > dependencies.txt
6969
70-
- uses: actions/cache@v4
70+
- uses: actions/cache@v5
7171
name: "Restore cache: `cabal store`"
7272
with:
7373
path: ${{ steps.setup-haskell.outputs.cabal-store }}
7474
key: cache-dependencies-${{ env.CABAL_CACHE_VERSION }}-${{ env.CACHE_VERSION }}-${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('dependencies.txt') }}
7575
restore-keys: cache-dependencies-${{ env.CABAL_CACHE_VERSION }}-${{ env.CACHE_VERSION }}-${{ runner.os }}-${{ matrix.ghc }}
7676

77-
- uses: actions/cache@v4
77+
- uses: actions/cache@v5
7878
name: "Cache `dist-newstyle`"
7979
with:
8080
path: |
@@ -86,7 +86,7 @@ jobs:
8686
- name: Build dependencies
8787
run: cabal build --only-dependencies all -j
8888

89-
- uses: actions/cache/save@v4
89+
- uses: actions/cache/save@v5
9090
name: "Save cache: `cabal store`"
9191
with:
9292
path: ${{ steps.setup-haskell.outputs.cabal-store }}

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,15 +66,15 @@ jobs:
6666
cabal build all --dry-run
6767
cat dist-newstyle/cache/plan.json | jq -L .github/workflows/jq-install-plan | sort | uniq > dependencies.txt
6868
69-
- uses: actions/cache/restore@v4
69+
- uses: actions/cache/restore@v5
7070
name: "Restore cache: `cabal store`"
7171
id: cache-dependencies
7272
with:
7373
path: ${{ steps.setup-haskell.outputs.cabal-store }}
7474
key: cache-dependencies-${{ env.CABAL_CACHE_VERSION }}-${{ env.CACHE_VERSION }}-${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('dependencies.txt') }}
7575
restore-keys: cache-dependencies-${{ env.CABAL_CACHE_VERSION }}-${{ env.CACHE_VERSION }}-${{ runner.os }}-${{ matrix.ghc }}
7676

77-
- uses: actions/cache@v4
77+
- uses: actions/cache@v5
7878
name: "Cache `dist-newstyle`"
7979
with:
8080
path: |
@@ -86,7 +86,7 @@ jobs:
8686
- name: Build dependencies
8787
run: cabal build --only-dependencies all -j
8888

89-
- uses: actions/cache/save@v4
89+
- uses: actions/cache/save@v5
9090
name: "Save cache: `cabal store`"
9191
if: always() && steps.cache-dependencies.outputs.cache-hit != 'true'
9292
with:

.github/workflows/github-page.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
with:
5656
use-sodium-vrf: false
5757

58-
- uses: actions/cache@v4
58+
- uses: actions/cache@v5
5959
name: Cache cabal store
6060
with:
6161
path: ${{ steps.setup-haskell.outputs.cabal-store }}

.github/workflows/nightly.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,15 +88,15 @@ jobs:
8888
cabal build all --dry-run
8989
cat dist-newstyle/cache/plan.json | jq -L .github/workflows/jq-install-plan | sort | uniq > dependencies.txt
9090
91-
- uses: actions/cache/restore@v4
91+
- uses: actions/cache/restore@v5
9292
name: "Restore cache: `cabal store`"
9393
id: restore-cabal-store
9494
with:
9595
path: ${{ steps.setup-haskell.outputs.cabal-store }}
9696
key: cache-dependencies-${{ env.CABAL_CACHE_VERSION }}-${{ env.CACHE_VERSION }}-${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('dependencies.txt') }}
9797
restore-keys: cache-dependencies-${{ env.CABAL_CACHE_VERSION }}-${{ env.CACHE_VERSION }}-${{ runner.os }}-${{ matrix.ghc }}
9898

99-
- uses: actions/cache@v4
99+
- uses: actions/cache@v5
100100
name: "Cache `dist-newstyle`"
101101
with:
102102
path: |
@@ -108,7 +108,7 @@ jobs:
108108
- name: Build dependencies
109109
run: cabal build --only-dependencies all -j
110110

111-
- uses: actions/cache/save@v4
111+
- uses: actions/cache/save@v5
112112
name: "Save cache: `cabal store`"
113113
with:
114114
path: ${{ steps.setup-haskell.outputs.cabal-store }}

0 commit comments

Comments
 (0)