Skip to content

Commit 857da76

Browse files
committed
ci: fix nightly rust version
`rustc --version` on my machine told me 2024-11-10, so I don't know why it's not available in CI.
1 parent 764591a commit 857da76

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/code-quality.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
steps:
2424
- name: Checkout sources
2525
uses: actions/checkout@v4
26-
- name: Install Rust
26+
- name: Install nightly Rust toolchain
2727
uses: dtolnay/rust-toolchain@nightly
2828
with:
29-
toolchain: nightly-2024-11-10
29+
toolchain: nightly-2024-11-11
3030
components: rustfmt, clippy
3131
- name: Check fmt
3232
run: cargo fmt --all -- --check

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ jobs:
3333
runs-on: ubuntu-24.04
3434
steps:
3535
- uses: actions/checkout@v4
36-
- name: Install stable Rust toolchain
37-
uses: dtolnay/rust-toolchain@stable
36+
- name: Install nightly Rust toolchain
37+
uses: dtolnay/rust-toolchain@nightly
3838
with:
39-
toolchain: nightly-2024-11-10
39+
toolchain: nightly-2024-11-11
4040
- uses: Swatinem/rust-cache@v1
4141
- name: Run tests
4242
run: cargo test --features unstable-thread-local

0 commit comments

Comments
 (0)