Skip to content

Commit fcbc72c

Browse files
committed
Update workflows
This PR includes changes from: - #332: Use -C rathen than -Z for instrument-coverage - #320: Replace unmaintained actions-rs/toolchain with dtolnay/rust-toolchain@master It also updates actions/cache to v4.
1 parent 11b559e commit fcbc72c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@v4
2525
- name: Cache cargo registry
26-
uses: actions/cache@v1
26+
uses: actions/cache@v4
2727
with:
2828
path: ~/.cargo/registry
2929
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
3030
- name: Cache cargo index
31-
uses: actions/cache@v1
31+
uses: actions/cache@v4
3232
with:
3333
path: ~/.cargo/git
3434
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
3535
- name: Cache cargo binaries
36-
uses: actions/cache@v1
36+
uses: actions/cache@v4
3737
with:
3838
path: ~/.cargo/bin
3939
key: ${{ runner.os }}-cargo-bin-${{ hashFiles('**/Cargo.lock') }}

0 commit comments

Comments
 (0)