Update Rust toolchain action to use stable version and correct target input parameter for improved compatibility in setup workflow.

This commit is contained in:
Jamie Pine
2025-12-14 23:37:22 -08:00
parent a28ea26706
commit aee5d8ddda

View File

@@ -17,9 +17,9 @@ runs:
steps:
- name: Install Rust
id: toolchain
uses: IronCoreLabs/rust-toolchain@v1
uses: dtolnay/rust-toolchain@stable
with:
target: ${{ inputs.target }}
targets: ${{ inputs.target }}
components: clippy, rustfmt
- name: Cache Rust Dependencies