Skip to content

Commit

Permalink
fix(ci): update toolchain to match rust-toolchain.toml
Browse files Browse the repository at this point in the history
This is necessary due to rust-lang/cargo#14712
  • Loading branch information
Rajil1213 committed Jan 10, 2025
1 parent 8922676 commit 715909f
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2024-07-27
toolchain: nightly-2024-11-01
- uses: taiki-e/install-action@cargo-hack
- uses: Swatinem/rust-cache@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2024-07-27
toolchain: nightly-2024-11-01

- name: cargo update
# Remove first line that always just says "Updating crates.io index"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2024-07-27
toolchain: nightly-2024-11-01
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/functional.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
- name: Set up Rust
uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2024-07-27
toolchain: nightly-2024-11-01
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2024-07-27
toolchain: nightly-2024-11-01
- name: Install latest nextest release
uses: taiki-e/install-action@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2024-07-27
toolchain: nightly-2024-11-01

- uses: Swatinem/rust-cache@v2
with:
Expand All @@ -46,7 +46,7 @@ jobs:
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
toolchain: nightly-2024-07-27
toolchain: nightly-2024-11-01
- run: cargo fmt --all --check

codespell:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2024-07-27
toolchain: nightly-2024-11-01

# HACK: not denying warnings as we depend on `yaml-rust` via `format-serde-error` which is unmaintained
- name: Check for audit warnings
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
uses: dtolnay/rust-toolchain@nightly
with:
components: llvm-tools-preview
toolchain: nightly-2024-07-27
toolchain: nightly-2024-11-01

- name: Install latest nextest release
uses: taiki-e/install-action@v2
Expand Down

0 comments on commit 715909f

Please sign in to comment.