Skip to content

Commit 0244737

Browse files
Bump actions/cache from 4.1.0 to 4.1.1
Bumps [actions/cache](https://github.com/actions/cache) from 4.1.0 to 4.1.1. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4.1.0...v4.1.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 9760862 commit 0244737

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/cargo-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ jobs:
1919
override: true
2020
components: rustfmt, clippy
2121
- name: Cache cargo registry
22-
uses: actions/[email protected].0
22+
uses: actions/[email protected].1
2323
with:
2424
path: ~/.cargo/registry
2525
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
2626
- name: Cache cargo index
27-
uses: actions/[email protected].0
27+
uses: actions/[email protected].1
2828
with:
2929
path: ~/.cargo/git
3030
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
3131
- name: Cache cargo build
32-
uses: actions/[email protected].0
32+
uses: actions/[email protected].1
3333
with:
3434
path: target
3535
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}

0 commit comments

Comments
 (0)