Skip to content

Commit

Permalink
Upgrade actions/cache in GitHub Actions to 4.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 8, 2024
1 parent e27fe0c commit cd5c648
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build-artifacts/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ runs:
using: composite
steps:
- name: Restore build artifacts from the workflow cache
uses: actions/cache/restore@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0
uses: actions/cache/restore@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
with:
# A cache miss should never occur, as the `ci.yml` workflow should have built the project prior to this step.
#
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
#
- name: Skip if already built
id: skip-if-already-built
uses: actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
with:
# If an exact cache hit occurs, another workflow run on this branch has already built the project in the current configuration, and we can skip the rest of the job.
# This is especially useful upon rebasing interactively.
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
#
- name: Skip if already verified
id: skip-if-already-verified
uses: actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
with:
# If an exact cache hit occurs, another workflow run on this branch has already verified that the source code is clean in the current configuration, and we can skip the rest of the job.
# This is especially useful upon rebasing interactively.
Expand Down

0 comments on commit cd5c648

Please sign in to comment.