Skip to content

Commit

Permalink
Update actions in CI to avoid deprecation (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
a1phyr authored Jan 19, 2023
1 parent 117222d commit f276289
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- uses: hecrj/setup-rust-action@v1
with:
rust-version: ${{ matrix.rust }}
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: cargo test --verbose
- run: cargo test --verbose --no-default-features
- run: cargo test --verbose
Expand All @@ -52,7 +52,7 @@ jobs:
- uses: hecrj/setup-rust-action@v1
with:
rust-version: nightly
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: cargo install cross
- run: cross test --verbose --target=${{ matrix.target }} --no-default-features
- run: cross test --verbose --target=${{ matrix.target }}
Expand All @@ -71,7 +71,7 @@ jobs:
with:
rust-version: nightly
components: miri
- uses: actions/checkout@v2
- uses: actions/checkout@v3
# Note(Lokathor): We got some cached json errors, and so we cargo clean for this run.
- run: rm -fr target
- run: cargo miri test --verbose --no-default-features
Expand All @@ -86,7 +86,7 @@ jobs:
matrix:
sanitizer: [address, memory, leak]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: hecrj/setup-rust-action@v1
with:
rust-version: nightly
Expand Down

0 comments on commit f276289

Please sign in to comment.