Skip to content

Commit 5e3b324

Browse files
committed
chore(ci): Ensure MSRV is quoted
Switching from specifying patch to not, with a minor version with a trailing zero, is causing YAML to convert `1.70` to `1.7`.
1 parent 74beef5 commit 5e3b324

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
- name: Install Rust
5858
uses: dtolnay/rust-toolchain@stable
5959
with:
60-
toolchain: 1.65.0 # MSRV
60+
toolchain: "1.65.0" # MSRV
6161
- uses: Swatinem/rust-cache@v2
6262
- name: Default features
6363
run: cargo check --workspace --all-targets
@@ -119,7 +119,7 @@ jobs:
119119
- name: Install Rust
120120
uses: dtolnay/rust-toolchain@stable
121121
with:
122-
toolchain: 1.65.0 # MSRV
122+
toolchain: "1.65.0" # MSRV
123123
components: clippy
124124
- uses: Swatinem/rust-cache@v2
125125
- name: Install SARIF tools

0 commit comments

Comments
 (0)