diff --git a/.github/actions/rust/action.yml b/.github/actions/rust/action.yml index 54fe0e45a1..dae4599e6f 100644 --- a/.github/actions/rust/action.yml +++ b/.github/actions/rust/action.yml @@ -24,7 +24,9 @@ runs: - name: Install Rust uses: dtolnay/rust-toolchain@21dc36fb71dd22e3317045c0c31a3f4249868b17 # master with: - toolchain: ${{ inputs.version }} + # Nightly pinned due to + # for now. + toolchain: ${{ inputs.version == 'nightly' && 'nightly-2025-01-15' || inputs.version }} components: ${{ inputs.components }} targets: ${{ inputs.targets }}