Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/cache from 4.0.1 to 4.0.2 #11

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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/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.1
uses: actions/cache/restore@v4.0.2
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.1
uses: actions/cache/restore@v4.0.2
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.1
uses: actions/cache/save@v4.0.2
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.1
uses: actions/cache/restore@v4.0.2
with:
path: ${{ env.guix_cached_paths }}
key: ${{ needs.build.outputs.cache_name }}
Expand Down