Skip to content

Commit 6e86bf8

Browse files
Bump actions/cache from 3.3.1 to 4.0.0 (#90)
Bumps [actions/cache](https://github.com/actions/cache) from 3.3.1 to 4.0.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3.3.1...v4.0.0) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent c036f62 commit 6e86bf8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/Build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -114,15 +114,15 @@ jobs:
114114
echo "version=$(rustc --version)" >> $GITHUB_OUTPUT
115115
116116
- name: Cache cargo index
117-
uses: actions/cache@v3.3.1
117+
uses: actions/cache@v4.0.0
118118
with:
119119
path: ~/.cargo/registry/index
120120
key: index-${{ runner.os }}-${{ matrix.config.target_triple }}-${{ github.run_number }}
121121
restore-keys: |
122122
index-${{ runner.os }}-${{ matrix.config.target_triple }}-
123123
124124
- name: Cache cargo registry
125-
uses: actions/cache@v3.3.1
125+
uses: actions/cache@v4.0.0
126126
with:
127127
path: ~/.cargo/registry/cache
128128
key: registry-${{ runner.os }}-${{ steps.rust-version.outputs.version }}-${{ matrix.config.target_triple }}-${{ hashFiles('Cargo.lock') }}
@@ -131,7 +131,7 @@ jobs:
131131
run: cargo fetch
132132

133133
- name: Cache target directory
134-
uses: actions/cache@v3.3.1
134+
uses: actions/cache@v4.0.0
135135
with:
136136
path: target
137137
key: cache-target-${{ runner.os }}-${{ steps.rust-version.outputs.version }}-${{ hashFiles('Cargo.lock') }}

0 commit comments

Comments
 (0)