Skip to content

Commit a459209

Browse files
authored
ci: fix cargo tests (#172)
1 parent 058c27c commit a459209

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/actions/setup/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ runs:
3939
~/.cargo/git/db/
4040
target/
4141
~/.rustup/
42-
key: rust-1.85.0-${{ hashFiles('**/Cargo.toml') }}
43-
restore-keys: rust-1.85.0-
42+
key: rust-1.86.0-${{ hashFiles('**/Cargo.toml') }}
43+
restore-keys: rust-1.86.0-
4444

4545
- name: Setup toolchain
4646
id: rustc-toolchain
4747
shell: bash
4848
run: |
49-
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain 1.85.0 -y
49+
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain 1.86.0 -y
5050
rustup install nightly
5151
5252
- name: "Install sp1up"

.github/workflows/pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ jobs:
8989
uses: actions-rs/cargo@v1
9090
with:
9191
command: test
92-
toolchain: 1.85.0
92+
toolchain: 1.86.0
9393
args: --release
9494
env:
9595
RUST_BACKTRACE: 1
96-
RUSTUP_TOOLCHAIN: 1.85.0
96+
RUSTUP_TOOLCHAIN: 1.86.0
9797

9898
cargo-lint:
9999
name: Cargo Lint

0 commit comments

Comments
 (0)