Skip to content

Commit 32adf19

Browse files
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 f26cbdc commit 32adf19

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/bootstrap.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
rm -rf ~/.config/cabal
3333
rm -rf ~/.cache/cabal
3434
35-
- uses: actions/cache@v4
35+
- uses: actions/cache@v5
3636
name: Cache the downloads
3737
id: bootstrap-cache
3838
with:

.github/workflows/quick-jobs.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Generate build plan for correct cache key
4646
run: ${{ env.cabal_build }} --dry-run
4747
- name: Restore cached dependencies
48-
uses: actions/cache/restore@v4
48+
uses: actions/cache/restore@v5
4949
id: cache
5050
with:
5151
path: ~/.local/state/cabal
@@ -62,7 +62,7 @@ jobs:
6262
git status > /dev/null
6363
git diff-files -p --exit-code
6464
- name: Cache dependencies
65-
uses: actions/cache/save@v4
65+
uses: actions/cache/save@v5
6666
if: always() && steps.cache.outputs.cache-hit != 'true'
6767
with:
6868
path: ~/.local/state/cabal
@@ -91,7 +91,7 @@ jobs:
9191
run: |
9292
echo "DATE=$(date +'%Y-%m-%d')" >> "${GITHUB_ENV}"
9393
- name: Restore cached dependencies
94-
uses: actions/cache/restore@v4
94+
uses: actions/cache/restore@v5
9595
id: cache
9696
with:
9797
path: ~/.local/state/cabal
@@ -106,7 +106,7 @@ jobs:
106106
run: make doctest
107107
- name: Cache dependencies
108108
if: always() && steps.cache.outputs.cache-hit != 'true'
109-
uses: actions/cache/save@v4
109+
uses: actions/cache/save@v5
110110
with:
111111
path: ~/.local/state/cabal
112112
key: ${{ steps.cache.outputs.cache-primary-key }}
@@ -133,7 +133,7 @@ jobs:
133133
- name: Generate build plan for correct cache key
134134
run: ${{ env.cabal_build }} --dry-run
135135
- name: Restore cached dependencies
136-
uses: actions/cache/restore@v4
136+
uses: actions/cache/restore@v5
137137
id: cache
138138
with:
139139
path: ~/.local/state/cabal
@@ -144,7 +144,7 @@ jobs:
144144
- name: Are buildinfo docs up to date?
145145
run: make doc/buildinfo-fields-reference.rst
146146
- name: Cache dependencies
147-
uses: actions/cache/save@v4
147+
uses: actions/cache/save@v5
148148
if: always() && steps.cache.outputs.cache-hit != 'true'
149149
with:
150150
path: ~/.local/state/cabal

.github/workflows/validate.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135

136136
# See the following link for a breakdown of the following step
137137
# https://github.com/haskell/actions/issues/7#issuecomment-745697160
138-
- uses: actions/cache@v4
138+
- uses: actions/cache@v5
139139
with:
140140
# validate.sh uses a special build dir
141141
path: |
@@ -297,7 +297,7 @@ jobs:
297297
# As we are reusing the cached build dir from the previous step
298298
# the generated artifacts are available here,
299299
# including the cabal executable and the test suite
300-
- uses: actions/cache@v4
300+
- uses: actions/cache@v5
301301
with:
302302
path: |
303303
${{ steps.setup-haskell.outputs.cabal-store }}
@@ -350,7 +350,7 @@ jobs:
350350

351351
# See the following link for a breakdown of the following step
352352
# https://github.com/haskell/actions/issues/7#issuecomment-745697160
353-
- uses: actions/cache@v4
353+
- uses: actions/cache@v5
354354
with:
355355
# validate.sh uses a special build dir
356356
path: |

0 commit comments

Comments
 (0)