Skip to content

Commit 8ff1b1c

Browse files
revert: "build: Pin Rust toolchain minor version (#2687)" (#2692)
This reverts commit 1dcc54d. Unfortunately, pinning the toolchain causes the release build to fail. Hopefully, we can reintroduce pinning soon, but for now, I would like to unblock release builds.
1 parent c5eeb6e commit 8ff1b1c

File tree

3 files changed

+7
-13
lines changed

3 files changed

+7
-13
lines changed

.github/workflows/lint.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ jobs:
4545
- name: Checkout Repository
4646
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
4747

48-
- name: Setup Rust Toolchain
49-
run: |
50-
rustup set profile minimal
51-
rustup component add clippy rustfmt
52-
rustup target add ${{ matrix.target }}
48+
- name: Install Rust Toolchain
49+
run: rustup toolchain install stable --profile minimal --component clippy --component rustfmt --no-self-update
50+
51+
- name: Add Target
52+
run: rustup target add ${{ matrix.target }}
5353

5454
- name: Install musl-gcc (Linux only)
5555
if: matrix.os == 'ubuntu-24.04'

.github/workflows/test.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,8 @@ jobs:
4646
- name: Checkout Repository
4747
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
4848

49-
- name: Setup Rust Toolchain
50-
run: |
51-
rustup set profile minimal
52-
rustup target add ${{ matrix.target }}
49+
- name: Add Target
50+
run: rustup target add ${{ matrix.target }}
5351

5452
- name: Install musl-gcc (Linux only)
5553
if: matrix.os == 'ubuntu-24.04'

rust-toolchain.toml

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)