Explicitly use fully qualified rust version numbers

The action expands these internally, but then rust-toolchain.toml is interpreted
literally, and 1.88 is technically a different toolchain from 1.88.0.
This commit is contained in:
Xiretza
2025-08-07 21:28:34 +00:00
parent 921aaa0786
commit 9714b98262
2 changed files with 2 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ runs:
using: "composite"
steps:
# also update in rust-toolchain.toml
- uses: dtolnay/rust-toolchain@1.88
- uses: dtolnay/rust-toolchain@1.88.0
with:
targets: ${{ inputs.targets }}
components: ${{ inputs.components }}

View File

@@ -1,3 +1,3 @@
[toolchain]
# also update in .github/actions/rust-toolchain@stable/action.yml
channel = "1.88"
channel = "1.88.0"