Skip to content

Commit d1d7aa3

Browse files
Bump actions/cache from 5 to 5.0.4 in the patch group (#303)
Bumps the patch group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `actions/cache` from 5 to 5.0.4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v5.0.4) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 7377608 commit d1d7aa3

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/cargo-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v6
2020
- name: Cache cargo registry
21-
uses: actions/cache@v5
21+
uses: actions/cache@v5.0.4
2222
with:
2323
path: ~/.cargo/registry
2424
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
2525
- name: Cache cargo index
26-
uses: actions/cache@v5
26+
uses: actions/cache@v5.0.4
2727
with:
2828
path: ~/.cargo/git
2929
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
3030
- name: Cache cargo build
31-
uses: actions/cache@v5
31+
uses: actions/cache@v5.0.4
3232
with:
3333
path: target
3434
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
@@ -25,17 +25,17 @@ jobs:
2525
steps:
2626
- uses: actions/checkout@v6
2727
- name: Cache cargo registry
28-
uses: actions/cache@v5
28+
uses: actions/cache@v5.0.4
2929
with:
3030
path: ~/.cargo/registry
3131
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
3232
- name: Cache cargo index
33-
uses: actions/cache@v5
33+
uses: actions/cache@v5.0.4
3434
with:
3535
path: ~/.cargo/git
3636
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
3737
- name: Cache cargo build
38-
uses: actions/cache@v5
38+
uses: actions/cache@v5.0.4
3939
with:
4040
path: target
4141
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
@@ -20,17 +20,17 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v6
2222
- name: Cache cargo registry
23-
uses: actions/cache@v5
23+
uses: actions/cache@v5.0.4
2424
with:
2525
path: ~/.cargo/registry
2626
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
2727
- name: Cache cargo index
28-
uses: actions/cache@v5
28+
uses: actions/cache@v5.0.4
2929
with:
3030
path: ~/.cargo/git
3131
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
3232
- name: Cache cargo build
33-
uses: actions/cache@v5
33+
uses: actions/cache@v5.0.4
3434
with:
3535
path: target
3636
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}

0 commit comments

Comments
 (0)