Skip to content

Commit

Permalink
Merge pull request #8 from sigprof/dependabot/github_actions/actions/…
Browse files Browse the repository at this point in the history
…cache-4.0.1

Bump actions/cache from 4.0.0 to 4.0.1
  • Loading branch information
sigprof committed Mar 6, 2024
2 parents c8d47d4 + ec1cb89 commit 317fe76
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
- name: Check whether the Guix cache needs updating
id: check_cache
uses: actions/cache/restore@v4.0.0
uses: actions/cache/restore@v4.0.1
with:
path: ${{ env.guix_cached_paths }}
key: ${{ steps.cache_name.outputs.ok }}
Expand All @@ -137,7 +137,7 @@ jobs:
- name: Restore the Guix store from cache
id: restore_cache
if: ${{ !steps.check_cache.outputs.cache-hit }}
uses: actions/cache/restore@v4.0.0
uses: actions/cache/restore@v4.0.1
with:
path: ${{ env.guix_cached_paths }}
key: ${{ steps.cache_name.outputs.ok }}
Expand Down Expand Up @@ -257,7 +257,7 @@ jobs:
always() && !cancelled()
&& !steps.check_cache.outputs.cache-hit
&& (steps.guix_shutdown.outcome == 'success')
uses: actions/cache/save@v4.0.0
uses: actions/cache/save@v4.0.1
with:
path: ${{ env.guix_cached_paths }}
key: ${{ steps.saved_cache_name.outputs.name }}
Expand All @@ -282,7 +282,7 @@ jobs:
- name: Restore the Guix store from cache
id: restore_cache
uses: actions/cache/restore@v4.0.0
uses: actions/cache/restore@v4.0.1
with:
path: ${{ env.guix_cached_paths }}
key: ${{ needs.build.outputs.cache_name }}
Expand Down

0 comments on commit 317fe76

Please sign in to comment.