Skip to content

Commit

Permalink
Bump actions/cache from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3...v4)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jan 18, 2024
1 parent 58cfc06 commit e69b402
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/reusable-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
- name: Job summary
run: |
echo "# Release $(git describe --tags --abbrev=0)" >> $GITHUB_STEP_SUMMARY
- uses: actions/cache/save@v3
- uses: actions/cache/save@v4
with:
path: repo-with-unsigned-version-update-commits.git
key: repo-with-unsigned-version-update-commits-${{ env.RUN_ATTEMPT_UID }}
Expand All @@ -139,7 +139,7 @@ jobs:
- uses: actions/checkout@v4
with:
path: repo
- uses: actions/cache/restore@v3
- uses: actions/cache/restore@v4
with:
path: repo-with-unsigned-version-update-commits.git
key: repo-with-unsigned-version-update-commits-${{ env.RUN_ATTEMPT_UID }}
Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:
echo EOF
} >> "$GITHUB_OUTPUT"
- uses: actions/cache/save@v3
- uses: actions/cache/save@v4
id: cache
with:
path: ${{ env.LOCAL_ARTIFACTS_STAGING_PATH }}
Expand All @@ -248,7 +248,7 @@ jobs:
with:
path: repo
ref: ${{ needs.push-release-commit.outputs.release_commit_id }}
- uses: actions/cache/restore@v3
- uses: actions/cache/restore@v4
with:
path: ${{ env.LOCAL_ARTIFACTS_STAGING_PATH }}
key: unsigned-${{ env.RUN_ATTEMPT_UID }}
Expand Down Expand Up @@ -293,7 +293,7 @@ jobs:
echo "Pushing tag $RELEASE_TAG"
git push origin $RELEASE_TAG
- uses: actions/cache/save@v3
- uses: actions/cache/save@v4
with:
path: ${{ env.LOCAL_ARTIFACTS_STAGING_PATH }}
key: signed-${{ env.RUN_ATTEMPT_UID }}
Expand All @@ -303,7 +303,7 @@ jobs:
needs: sign
runs-on: ubuntu-latest
steps:
- uses: actions/cache/restore@v3
- uses: actions/cache/restore@v4
with:
path: ${{ env.LOCAL_ARTIFACTS_STAGING_PATH }}
key: signed-${{ env.RUN_ATTEMPT_UID }}
Expand Down

0 comments on commit e69b402

Please sign in to comment.