Skip to content

Commit 43a99fb

Browse files
authored
Merge pull request #124 from kyoto7250/renovate/actions-cache-4.x
Update actions/cache action to v4
2 parents a1565f9 + 1b3275f commit 43a99fb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,17 @@ jobs:
3636
steps:
3737
- uses: actions/checkout@v4
3838
- name: Cache cargo registry
39-
uses: actions/cache@v2
39+
uses: actions/cache@v4
4040
with:
4141
path: ~/.cargo/registry
4242
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
4343
- name: Cache cargo index
44-
uses: actions/cache@v2
44+
uses: actions/cache@v4
4545
with:
4646
path: ~/.cargo/git
4747
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
4848
- name: Cache cargo build
49-
uses: actions/cache@v2
49+
uses: actions/cache@v4
5050
with:
5151
path: target
5252
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}

0 commit comments

Comments
 (0)