Skip to content

Commit c1d8907

Browse files
committed
pin toolchain to nightly-2024-06-21
See rust-lang/rust#126552
1 parent 9b87009 commit c1d8907

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,12 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v3
18-
- uses: dtolnay/rust-toolchain@nightly
19-
with:
20-
components: rustfmt
2118
- run: cargo fmt --all -- --check
2219

2320
clippy:
2421
runs-on: ubuntu-latest
2522
steps:
2623
- uses: actions/checkout@v3
27-
- uses: dtolnay/rust-toolchain@nightly
28-
with:
29-
components: clippy
3024
- run: cargo clippy --all-targets --all-features -- -D warnings
3125

3226
audit:
@@ -72,9 +66,6 @@ jobs:
7266
sanitizer: [address, leak, memory, thread]
7367
steps:
7468
- uses: actions/checkout@v3
75-
- uses: dtolnay/rust-toolchain@nightly
76-
with:
77-
components: rust-src
7869
- run: cargo test --tests --all-features --workspace --target x86_64-unknown-linux-gnu -Zbuild-std -Zunstable-options --config='build.rustflags = ["-Zsanitizer=${{ matrix.sanitizer }}"]' -- --test-threads=1
7970
env:
8071
CC: "clang"
@@ -113,10 +104,6 @@ jobs:
113104
target: x86_64-apple-darwin
114105
steps:
115106
- uses: actions/checkout@v3
116-
- uses: dtolnay/rust-toolchain@nightly
117-
with:
118-
components: rust-src
119-
targets: ${{ matrix.target }}
120107
- run: sudo apt install -y musl-tools
121108
if: runner.os == 'Linux'
122109
- run: cargo install --force cargo-make

rust-toolchain.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
[toolchain]
2-
channel = "nightly"
2+
channel = "nightly-2024-06-21"
3+
components = ["rust-src"]

0 commit comments

Comments
 (0)