Skip to content

Commit ca58484

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 ca58484

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/msrv.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,13 @@ jobs:
1818
- windows-2019
1919
- ubuntu-latest
2020
runs-on: ${{ matrix.os }}
21+
env:
22+
rust_version: 1.67.0
2123
steps:
2224
- uses: actions/checkout@v4
23-
- uses: dtolnay/[email protected] # dictated by `firefox` to support the `helix` editor, but now driven by the `time` crate. IMPORTANT: adjust etc/msrv-badge.svg as well
2425
- uses: extractions/setup-just@v2
26+
# dictated by `firefox` to support the `helix` editor, but now driven by the `time` crate. IMPORTANT: adjust etc/msrv-badge.svg as well
27+
- run: |
28+
rustup toolchain install $rust_version --profile minimal --no-self-update
29+
rustup default $rust_version
2530
- run: just ci-check-msrv

0 commit comments

Comments
 (0)