Skip to content

Commit 32743c6

Browse files
committed
ci: update actions/cache to v4
1 parent 02c9270 commit 32743c6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ jobs:
3838
steps:
3939
- uses: actions/checkout@v4
4040
- name: Cache cargo registry and index
41-
uses: actions/cache@v3
41+
uses: actions/cache@v4
4242
with:
4343
path: |
4444
~/.cargo/registry
4545
~/.cargo/git
4646
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.toml') }}
4747
- name: Cache cargo build
48-
uses: actions/cache@v3
48+
uses: actions/cache@v4
4949
with:
5050
path: target
5151
key: ${{ runner.os }}-target-${{ matrix.rust }}-${{ hashFiles('**/Cargo.toml') }}-memory-${{ hashFiles('**/memory.x') }}

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ jobs:
2424
steps:
2525
- uses: actions/checkout@v4
2626
- name: Cache cargo registry and index
27-
uses: actions/cache@v3
27+
uses: actions/cache@v4
2828
with:
2929
path: |
3030
~/.cargo/registry
3131
~/.cargo/git
3232
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.toml') }}
3333
- name: Cache cargo build
34-
uses: actions/cache@v3
34+
uses: actions/cache@v4
3535
with:
3636
path: target
3737
key: ${{ runner.os }}-target-nightly-${{ hashFiles('**/Cargo.toml') }}-memory-${{ hashFiles('**/memory.x') }}

0 commit comments

Comments
 (0)