File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change 10
10
stable,
11
11
beta,
12
12
1.60.0, # Our MSRV
13
- ]
13
+ ]
14
14
include :
15
15
- toolchain : stable
16
16
check-fmt : true
@@ -20,13 +20,11 @@ jobs:
20
20
runs-on : ubuntu-latest
21
21
steps :
22
22
- name : Checkout source code
23
- uses : actions/checkout@v2
23
+ uses : actions/checkout@v3
24
24
- name : Install Rust ${{ matrix.toolchain }} toolchain
25
- uses : actions-rs/toolchain@v1
26
- with :
27
- toolchain : ${{ matrix.toolchain }}
28
- override : true
29
- profile : minimal
25
+ run : |
26
+ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain ${{ matrix.toolchain }}
27
+ rustup override set ${{ matrix.toolchain }}
30
28
- name : Pin packages to allow for MSRV
31
29
if : matrix.msrv
32
30
run : |
You can’t perform that action at this time.
0 commit comments