Skip to content

Commit 7ab8302

Browse files
Bump actions/cache from 4.2.0 to 4.2.3
Bumps [actions/cache](https://github.com/actions/cache) from 4.2.0 to 4.2.3. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4.2.0...v4.2.3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent f26a8e8 commit 7ab8302

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/cargo-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,17 +50,17 @@ jobs:
5050
override: true
5151
components: rustfmt, clippy
5252
- name: Cache cargo registry
53-
uses: actions/cache@v4.2.0
53+
uses: actions/cache@v4.2.3
5454
with:
5555
path: ~/.cargo/registry
5656
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
5757
- name: Cache cargo index
58-
uses: actions/cache@v4.2.0
58+
uses: actions/cache@v4.2.3
5959
with:
6060
path: ~/.cargo/git
6161
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
6262
- name: Cache cargo build
63-
uses: actions/cache@v4.2.0
63+
uses: actions/cache@v4.2.3
6464
with:
6565
path: target
6666
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}

.github/workflows/cargo-clippy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,17 +50,17 @@ jobs:
5050
override: true
5151
components: rustfmt, clippy
5252
- name: Cache cargo registry
53-
uses: actions/cache@v4.2.0
53+
uses: actions/cache@v4.2.3
5454
with:
5555
path: ~/.cargo/registry
5656
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
5757
- name: Cache cargo index
58-
uses: actions/cache@v4.2.0
58+
uses: actions/cache@v4.2.3
5959
with:
6060
path: ~/.cargo/git
6161
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
6262
- name: Cache cargo build
63-
uses: actions/cache@v4.2.0
63+
uses: actions/cache@v4.2.3
6464
with:
6565
path: target
6666
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}

.github/workflows/cargo-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,17 +54,17 @@ jobs:
5454
override: true
5555
components: rustfmt, clippy
5656
- name: Cache cargo registry
57-
uses: actions/cache@v4.2.0
57+
uses: actions/cache@v4.2.3
5858
with:
5959
path: ~/.cargo/registry
6060
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
6161
- name: Cache cargo index
62-
uses: actions/cache@v4.2.0
62+
uses: actions/cache@v4.2.3
6363
with:
6464
path: ~/.cargo/git
6565
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
6666
- name: Cache cargo build
67-
uses: actions/cache@v4.2.0
67+
uses: actions/cache@v4.2.3
6868
with:
6969
path: target
7070
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}

0 commit comments

Comments
 (0)