Skip to content

Commit 0d98aac

Browse files
Merge pull request #812 from thibault-martinez/gh-actions-cache-v2
2 parents 61fc2ba + 4555f19 commit 0d98aac

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,19 @@ jobs:
3030
override: true
3131

3232
- name: Cache cargo registry
33-
uses: actions/cache@v1
33+
uses: actions/cache@v2
3434
with:
3535
path: ~/.cargo/registry
3636
key: ${{ matrix.os }}-${{ matrix.rust }}-cargo-registry-${{ hashFiles('**/Cargo.toml') }}
3737

3838
- name: Cache cargo index
39-
uses: actions/cache@v1
39+
uses: actions/cache@v2
4040
with:
4141
path: ~/.cargo/git
4242
key: ${{ matrix.os }}-${{ matrix.rust }}-cargo-index-${{ hashFiles('**/Cargo.toml') }}
4343

4444
- name: Cache cargo build
45-
uses: actions/cache@v1
45+
uses: actions/cache@v2
4646
with:
4747
path: target
4848
key: ${{ matrix.os }}-${{ matrix.rust }}-cargo-build-target-${{ hashFiles('**/Cargo.toml') }}
@@ -58,7 +58,7 @@ jobs:
5858
with:
5959
command: check
6060
args: --features unstable --all --bins --examples --tests
61-
61+
6262
- name: check wasm
6363
uses: actions-rs/cargo@v1
6464
with:

0 commit comments

Comments
 (0)