Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
path: fcvm
- uses: ./fcvm/.github/actions/checkout-deps
- name: Install Rust
uses: dtolnay/rust-toolchain@1.93.0
uses: dtolnay/rust-toolchain@1.100.0

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Keep CI Rust version aligned with rust-toolchain.toml

This change hardcodes dtolnay/rust-toolchain@1.100.0 for lint/packaging/fc-mock while the repository is still pinned to channel = "1.93.0" in rust-toolchain.toml, and other CI jobs continue to use that file-driven version. That split makes checks non-reproducible across jobs: cargo fmt --check and cargo clippy -- -D warnings can pass under one compiler and fail under the other, so CI is no longer validating a single toolchain configuration.

Useful? React with 👍 / 👎.

- name: Get dependency SHAs
id: deps
run: |
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
path: fcvm
- uses: ./fcvm/.github/actions/checkout-deps
- name: Install Rust
uses: dtolnay/rust-toolchain@1.93.0
uses: dtolnay/rust-toolchain@1.100.0
- name: Get dependency SHAs
id: deps
run: |
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
path: fcvm
- uses: ./fcvm/.github/actions/checkout-deps
- name: Install Rust
uses: dtolnay/rust-toolchain@1.93.0
uses: dtolnay/rust-toolchain@1.100.0
- name: Get dependency SHAs
id: deps
run: |
Expand Down
Loading