Skip to content

Commit

Permalink
Merge pull request #24 from guardian/dependabot/github_actions/action…
Browse files Browse the repository at this point in the history
…s/cache-4

Bump actions/cache from 3 to 4
  • Loading branch information
rtyley authored Jan 24, 2024
2 parents d3089a0 + e69b402 commit 26b2cde
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 @@ -127,7 +127,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 @@ -146,7 +146,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 @@ -238,7 +238,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 @@ -255,7 +255,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 @@ -300,7 +300,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 @@ -310,7 +310,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 26b2cde

Please sign in to comment.