Skip to content

Commit 1f83b38

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

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/cache@v4.0.2
22+
uses: actions/cache@v4.1.0
2323
with:
2424
path: ~/.cargo/registry
2525
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
2626
- name: Cache cargo index
27-
uses: actions/cache@v4.0.2
27+
uses: actions/cache@v4.1.0
2828
with:
2929
path: ~/.cargo/git
3030
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
3131
- name: Cache cargo build
32-
uses: actions/cache@v4.0.2
32+
uses: actions/cache@v4.1.0
3333
with:
3434
path: target
3535
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}

0 commit comments

Comments
 (0)