Skip to content

Commit 715909f

Browse files
committed
fix(ci): update toolchain to match rust-toolchain.toml
This is necessary due to rust-lang/cargo#14712
1 parent 8922676 commit 715909f

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

.github/workflows/compile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
- uses: dtolnay/rust-toolchain@nightly
1818
with:
19-
toolchain: nightly-2024-07-27
19+
toolchain: nightly-2024-11-01
2020
- uses: taiki-e/install-action@cargo-hack
2121
- uses: Swatinem/rust-cache@v2
2222
with:

.github/workflows/dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- uses: actions/checkout@v4
3232
- uses: dtolnay/rust-toolchain@nightly
3333
with:
34-
toolchain: nightly-2024-07-27
34+
toolchain: nightly-2024-11-01
3535

3636
- name: cargo update
3737
# Remove first line that always just says "Updating crates.io index"

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v4
1616
- uses: dtolnay/rust-toolchain@nightly
1717
with:
18-
toolchain: nightly-2024-07-27
18+
toolchain: nightly-2024-11-01
1919
- uses: Swatinem/rust-cache@v2
2020
with:
2121
cache-on-failure: true

.github/workflows/functional.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
- name: Set up Rust
8080
uses: dtolnay/rust-toolchain@nightly
8181
with:
82-
toolchain: nightly-2024-07-27
82+
toolchain: nightly-2024-11-01
8383
- uses: Swatinem/rust-cache@v2
8484
with:
8585
cache-on-failure: true

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
- uses: dtolnay/rust-toolchain@nightly
2222
with:
23-
toolchain: nightly-2024-07-27
23+
toolchain: nightly-2024-11-01
2424
- name: Install latest nextest release
2525
uses: taiki-e/install-action@v2
2626
with:

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- uses: dtolnay/rust-toolchain@nightly
2121
with:
22-
toolchain: nightly-2024-07-27
22+
toolchain: nightly-2024-11-01
2323

2424
- uses: Swatinem/rust-cache@v2
2525
with:
@@ -46,7 +46,7 @@ jobs:
4646
- uses: dtolnay/rust-toolchain@nightly
4747
with:
4848
components: rustfmt
49-
toolchain: nightly-2024-07-27
49+
toolchain: nightly-2024-11-01
5050
- run: cargo fmt --all --check
5151

5252
codespell:

.github/workflows/security.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v4
1919
- uses: dtolnay/rust-toolchain@nightly
2020
with:
21-
toolchain: nightly-2024-07-27
21+
toolchain: nightly-2024-11-01
2222

2323
# HACK: not denying warnings as we depend on `yaml-rust` via `format-serde-error` which is unmaintained
2424
- name: Check for audit warnings

.github/workflows/unit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
uses: dtolnay/rust-toolchain@nightly
4949
with:
5050
components: llvm-tools-preview
51-
toolchain: nightly-2024-07-27
51+
toolchain: nightly-2024-11-01
5252

5353
- name: Install latest nextest release
5454
uses: taiki-e/install-action@v2

0 commit comments

Comments
 (0)