Skip to content

Commit c97ee27

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 c97ee27

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/msrv.yml

Lines changed: 6 additions & 1 deletion
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+
# dictated by `firefox` to support the `helix` editor, but now driven by the `time` crate. IMPORTANT: adjust etc/msrv-badge.svg as well
23+
rust_version: 1.67.0
2124
steps:
2225
- 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
2426
- uses: extractions/setup-just@v2
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)