From e69b402c5c4266243c376449ab26bfd56e20efa9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 20:13:26 +0000 Subject: [PATCH] Bump actions/cache from 3 to 4 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](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/reusable-release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/reusable-release.yml b/.github/workflows/reusable-release.yml index b232abe..f40e5bb 100644 --- a/.github/workflows/reusable-release.yml +++ b/.github/workflows/reusable-release.yml @@ -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 }} @@ -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 }} @@ -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 }} @@ -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 }} @@ -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 }} @@ -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 }}