Skip to content

Commit

Permalink
chore(deps): update actions/cache action to v3.3.3 (#235)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jan 12, 2024
1 parent 9c12e16 commit 168a898
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_rocks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,15 +124,15 @@ jobs:
echo 'EOF' >> $GITHUB_ENV
- name: Restore rock cache
if: inputs.cache-action == 'restore'
uses: actions/cache/restore@v3.3.2
uses: actions/cache/restore@v3.3.3
id: rock-cache
with:
path: ~/.rock-cache
key: ${{ env.ROCK_CACHE_KEY }}
restore-keys: ${{ env.ROCK_CACHE_ALT_KEYS }}
- name: Restore rockcraft container cache
if: steps.rock-cache.outputs.cache-hit != 'true' && inputs.cache-action == 'restore'
uses: actions/cache/restore@v3.3.2
uses: actions/cache/restore@v3.3.3
id: rockcraft-cache
with:
path: ~/.rockcraft-cache/
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
done
- name: Save rockcraft container cache
if: inputs.cache-action == 'save'
uses: actions/cache/save@v3.3.2
uses: actions/cache/save@v3.3.3
with:
path: ~/.rockcraft-cache/
key: ${{ env.ROCKCRAFT_CACHE_KEY }}
Expand All @@ -207,7 +207,7 @@ jobs:
done
- name: Save rock cache
if: inputs.cache-action == 'save'
uses: actions/cache/save@v3.3.2
uses: actions/cache/save@v3.3.3
with:
path: ~/.rock-cache
key: ${{ env.ROCK_CACHE_KEY }}
Expand Down

0 comments on commit 168a898

Please sign in to comment.