CI: Fix workflow quotes
During the last month of CI changes a few anomalies have snuck into the main workflow file. Make quotes uniform.
This commit is contained in:
parent
13569b86a1
commit
61b428b2d9
|
@ -14,9 +14,9 @@ jobs:
|
||||||
outputs:
|
outputs:
|
||||||
nightly_version: ${{ steps.read_toolchain.outputs.nightly_version }}
|
nightly_version: ${{ steps.read_toolchain.outputs.nightly_version }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Crate
|
- name: "Checkout repo"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Read nightly version
|
- name: "Read nightly version"
|
||||||
id: read_toolchain
|
id: read_toolchain
|
||||||
run: echo "nightly_version=$(cat nightly-version)" >> $GITHUB_OUTPUT
|
run: echo "nightly_version=$(cat nightly-version)" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
|
@ -115,7 +115,7 @@ jobs:
|
||||||
uses: dtolnay/rust-toolchain@v1
|
uses: dtolnay/rust-toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: ${{ needs.Prepare.outputs.nightly_version }}
|
toolchain: ${{ needs.Prepare.outputs.nightly_version }}
|
||||||
- name: Install clippy
|
- name: "Install clippy"
|
||||||
run: rustup component add clippy
|
run: rustup component add clippy
|
||||||
- name: "Set dependencies"
|
- name: "Set dependencies"
|
||||||
run: cp Cargo-${{ matrix.dep }}.lock Cargo.lock
|
run: cp Cargo-${{ matrix.dep }}.lock Cargo.lock
|
||||||
|
@ -271,7 +271,7 @@ jobs:
|
||||||
uses: dtolnay/rust-toolchain@v1
|
uses: dtolnay/rust-toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: ${{ needs.Prepare.outputs.nightly_version }}
|
toolchain: ${{ needs.Prepare.outputs.nightly_version }}
|
||||||
- name: Install src
|
- name: "Install rust-src"
|
||||||
run: rustup component add rust-src
|
run: rustup component add rust-src
|
||||||
- name: "Set dependencies"
|
- name: "Set dependencies"
|
||||||
run: cp Cargo-${{ matrix.dep }}.lock Cargo.lock
|
run: cp Cargo-${{ matrix.dep }}.lock Cargo.lock
|
||||||
|
|
Loading…
Reference in New Issue