Skip to content

Commit c3ca3c6

Browse files
lmcdonoughclaude
andcommitted
Fix CI workflows: add required toolchain parameter to Rust installation steps
The dtolnay/rust-toolchain action requires an explicit 'toolchain' input parameter. Added 'toolchain: stable' to all Rust toolchain installation steps in both deploy-pr-preview.yml and build-test-push.yml workflows to resolve the "'toolchain' is a required input" error that was causing lint jobs to fail. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 87e0fc7 commit c3ca3c6

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/build-test-push.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
- name: Install Rust toolchain
3434
uses: dtolnay/rust-toolchain@stable
3535
with:
36+
toolchain: stable
3637
components: clippy, rustfmt
3738

3839
- name: Use cached dependencies
@@ -60,6 +61,7 @@ jobs:
6061
- name: Install Rust toolchain
6162
uses: dtolnay/rust-toolchain@stable
6263
with:
64+
toolchain: stable
6365
targets: x86_64-unknown-linux-gnu
6466

6567
- name: Set OpenSSL Paths

.github/workflows/deploy-pr-preview.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ jobs:
6363
- name: Install Rust toolchain
6464
uses: dtolnay/rust-toolchain@stable
6565
with:
66+
toolchain: stable
6667
components: clippy, rustfmt
6768

6869
- name: Use cached dependencies
@@ -92,6 +93,7 @@ jobs:
9293
- name: Install Rust toolchain
9394
uses: dtolnay/rust-toolchain@stable
9495
with:
96+
toolchain: stable
9597
targets: x86_64-unknown-linux-gnu
9698

9799
- name: Set OpenSSL Paths

0 commit comments

Comments
 (0)