We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ff81a4 commit d835bb2Copy full SHA for d835bb2
1 file changed
.github/workflows/rust.yml
@@ -27,12 +27,14 @@ jobs:
27
28
steps:
29
- uses: actions/checkout@v3
30
- - name: Install nightly for minimal-versions
+ - name: Install old nightly for minimal-versions (produces v3 lockfile)
31
if: matrix.rust == '1.65.0'
32
- uses: dtolnay/rust-toolchain@nightly
+ uses: dtolnay/rust-toolchain@stable
33
+ with:
34
+ toolchain: nightly-2024-02-01
35
- name: Generate minimal-versions lockfile
36
- run: cargo +nightly -Z minimal-versions generate-lockfile
37
+ run: cargo +nightly-2024-02-01 -Z minimal-versions generate-lockfile
38
- uses: dtolnay/rust-toolchain@stable
39
with:
40
toolchain: ${{ matrix.rust }}
0 commit comments