Skip to content

Commit 17d0d01

Browse files
committed
remove dtolnay action in favor of plain rustup calls
Using it when availble as standard tool seems preferable over using an action that potentially hides away what's truly going on (after all, it also calls `rustup` under the hood)
1 parent cd6d578 commit 17d0d01

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/msrv.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ jobs:
2020
runs-on: ${{ matrix.os }}
2121
steps:
2222
- uses: actions/checkout@v4
23-
- uses: dtolnay/rust-toolchain@1.67.0 # dictated by `firefox` to support the `helix` editor, but now driven by the `time` crate. IMPORTANT: adjust etc/msrv-badge.svg as well
2423
- uses: extractions/setup-just@v2
24+
# dictated by `firefox` to support the `helix` editor, but now driven by the `time` crate. IMPORTANT: adjust etc/msrv-badge.svg as well
25+
- run: |
26+
export version=1.67.0
27+
rustup toolchain install $version --profile minimal --no-self-update
28+
rustup default $version
2529
- run: just ci-check-msrv

0 commit comments

Comments
 (0)