File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010 stable,
1111 beta,
1212 1.60.0, # Our MSRV
13- ]
13+ ]
1414 include :
1515 - toolchain : stable
1616 check-fmt : true
@@ -20,13 +20,11 @@ jobs:
2020 runs-on : ubuntu-latest
2121 steps :
2222 - name : Checkout source code
23- uses : actions/checkout@v2
23+ uses : actions/checkout@v3
2424 - 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 }}
3028 - name : Pin packages to allow for MSRV
3129 if : matrix.msrv
3230 run : cargo update -p hashlink --precise "0.8.1" --verbose # hashlink 0.8.2 requires hashbrown 0.13, requiring 1.61.0
You can’t perform that action at this time.
0 commit comments