Skip to content

Commit a4688f4

Browse files
authored
Merge pull request #7 from sigprof/dependabot/github_actions/actions/cache-4.0.0
Bump actions/cache from 3.3.2 to 4.0.0
2 parents 42d63e9 + 70a07c8 commit a4688f4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
118118
- name: Check whether the Guix cache needs updating
119119
id: check_cache
120-
uses: actions/cache/restore@v3.3.2
120+
uses: actions/cache/restore@v4.0.0
121121
with:
122122
path: ${{ env.guix_cached_paths }}
123123
key: ${{ steps.cache_name.outputs.ok }}
@@ -134,7 +134,7 @@ jobs:
134134
- name: Restore the Guix store from cache
135135
id: restore_cache
136136
if: ${{ !steps.check_cache.outputs.cache-hit }}
137-
uses: actions/cache/restore@v3.3.2
137+
uses: actions/cache/restore@v4.0.0
138138
with:
139139
path: ${{ env.guix_cached_paths }}
140140
key: ${{ steps.cache_name.outputs.ok }}
@@ -254,7 +254,7 @@ jobs:
254254
always() && !cancelled()
255255
&& !steps.check_cache.outputs.cache-hit
256256
&& (steps.guix_shutdown.outcome == 'success')
257-
uses: actions/cache/save@v3.3.2
257+
uses: actions/cache/save@v4.0.0
258258
with:
259259
path: ${{ env.guix_cached_paths }}
260260
key: ${{ steps.saved_cache_name.outputs.name }}
@@ -279,7 +279,7 @@ jobs:
279279
280280
- name: Restore the Guix store from cache
281281
id: restore_cache
282-
uses: actions/cache/restore@v3.3.2
282+
uses: actions/cache/restore@v4.0.0
283283
with:
284284
path: ${{ env.guix_cached_paths }}
285285
key: ${{ needs.build.outputs.cache_name }}

0 commit comments

Comments
 (0)