Skip to content

Commit

Permalink
chore(ci): Ensure MSRV is quoted
Browse files Browse the repository at this point in the history
Switching from specifying patch to not, with a minor version with a
trailing zero, is causing YAML to convert `1.70` to `1.7`.
  • Loading branch information
epage committed Oct 5, 2023
1 parent 74beef5 commit 5e3b324
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.65.0 # MSRV
toolchain: "1.65.0" # MSRV
- uses: Swatinem/rust-cache@v2
- name: Default features
run: cargo check --workspace --all-targets
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.65.0 # MSRV
toolchain: "1.65.0" # MSRV
components: clippy
- uses: Swatinem/rust-cache@v2
- name: Install SARIF tools
Expand Down

0 comments on commit 5e3b324

Please sign in to comment.