Skip to content

Commit 88638ee

Browse files
chore(ci): bump actions/cache from 5.0.1 to 5.0.3 (#24579)
* chore(ci): bump actions/cache from 5.0.1 to 5.0.3 Bumps [actions/cache](https://github.com/actions/cache) from 5.0.1 to 5.0.3. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@9255dc7...cdf6c1f) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * Bump cache action in other workflows --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas <[email protected]>
1 parent 9422128 commit 88638ee

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/actions/install-vdev/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ runs:
1717
- name: Cache vdev binary
1818
id: cache-vdev
1919
if: ${{ inputs.skip-cache != 'true' }}
20-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
20+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
2121
with:
2222
path: ~/.cargo/bin/vdev
2323
key: ${{ runner.os }}-vdev-${{ hashFiles('vdev/**', 'Cargo.toml', 'Cargo.lock') }}
@@ -33,7 +33,7 @@ runs:
3333
3434
- name: Save vdev to cache
3535
if: ${{ inputs.skip-cache == 'true' }}
36-
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
36+
uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
3737
with:
3838
path: ~/.cargo/bin/vdev
3939
key: ${{ runner.os }}-vdev-${{ hashFiles('vdev/**', 'Cargo.toml', 'Cargo.lock') }}

.github/actions/setup/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ runs:
8383
- name: Check vdev cache status
8484
id: check-vdev-cache
8585
if: ${{ inputs.vdev == 'true' }}
86-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
86+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
8787
with:
8888
path: ~/.cargo/bin/vdev
8989
key: ${{ runner.os }}-vdev-${{ hashFiles('vdev/**', 'Cargo.toml', 'Cargo.lock') }}
@@ -148,7 +148,7 @@ runs:
148148

149149
- name: Cache Cargo registry, index, and git DB
150150
if: ${{ inputs.cargo-cache == 'true' || env.NEEDS_RUST == 'true' || env.VDEV_NEEDS_COMPILE == 'true' }}
151-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
151+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
152152
with:
153153
path: |
154154
~/.cargo/registry/index/
@@ -244,7 +244,7 @@ runs:
244244

245245
- name: Cache prepare.sh binaries
246246
id: cache-prepare-binaries
247-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
247+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
248248
with:
249249
path: |
250250
~/.cargo/bin/cargo-deb

.github/workflows/cross.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
ref: ${{ inputs.ref }}
3737

38-
- uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
38+
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
3939
name: Cache Cargo registry + index
4040
with:
4141
path: |

0 commit comments

Comments
 (0)