File tree Expand file tree Collapse file tree 1 file changed +9
-11
lines changed Expand file tree Collapse file tree 1 file changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -59,20 +59,18 @@ jobs:
59
59
nim-version : ' 1.6.14'
60
60
repo-token : ${{ secrets.GITHUB_TOKEN }}
61
61
62
- - name : Set up Rust (1.42.0)
63
- uses : actions-rs/toolchain@v1
64
- with :
65
- toolchain : 1.42.0-x86_64-unknown-linux-gnu
66
- default : true
67
- profile : minimal
62
+ - name : Set up Rust (1.70.0)
63
+ run : |
64
+ rustup set profile minimal
65
+ rustup install 1.70.0
66
+ rustup override set nightly
68
67
69
68
# required by cargo-udeps
70
69
- name : Set up Rust (nightly)
71
- uses : actions-rs/toolchain@v1
72
- with :
73
- toolchain : nightly-x86_64-unknown-linux-gnu
74
- default : true
75
- profile : minimal
70
+ run : |
71
+ rustup set profile minimal
72
+ rustup install nightly
73
+ rustup override set nightly
76
74
77
75
# required only if you set `languages.rust.list_dependencies_backend.kind` to `"cargo-udeps"`
78
76
- name : Install cargo-udeps for Rust
You can’t perform that action at this time.
0 commit comments