Skip to content

Commit feb3e61

Browse files
build(deps): bump actions/cache from 5 to 6
Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 6e0b28f commit feb3e61

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v6
1717
- name: Cache cargo registry
18-
uses: actions/cache@v5
18+
uses: actions/cache@v6
1919
with:
2020
path: ~/.cargo/registry
2121
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
2222
- name: Cache cargo build
23-
uses: actions/cache@v5
23+
uses: actions/cache@v6
2424
with:
2525
path: target
2626
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
@@ -40,12 +40,12 @@ jobs:
4040
steps:
4141
- uses: actions/checkout@v6
4242
- name: Cache cargo registry
43-
uses: actions/cache@v5
43+
uses: actions/cache@v6
4444
with:
4545
path: ~/.cargo/registry
4646
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
4747
- name: Cache cargo build
48-
uses: actions/cache@v5
48+
uses: actions/cache@v6
4949
with:
5050
path: target
5151
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
@@ -81,12 +81,12 @@ jobs:
8181
steps:
8282
- uses: actions/checkout@v6
8383
- name: Cache cargo registry
84-
uses: actions/cache@v5
84+
uses: actions/cache@v6
8585
with:
8686
path: ~/.cargo/registry
8787
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
8888
- name: Cache cargo build
89-
uses: actions/cache@v5
89+
uses: actions/cache@v6
9090
with:
9191
path: target
9292
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
@@ -112,12 +112,12 @@ jobs:
112112
steps:
113113
- uses: actions/checkout@v6
114114
- name: Cache cargo registry
115-
uses: actions/cache@v5
115+
uses: actions/cache@v6
116116
with:
117117
path: ~/.cargo/registry
118118
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
119119
- name: Cache cargo build
120-
uses: actions/cache@v5
120+
uses: actions/cache@v6
121121
with:
122122
path: target
123123
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}

0 commit comments

Comments
 (0)