From 61b428b2d903ad0235743b6a2c88d1990545e2c9 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Sun, 19 May 2024 08:46:31 +1000 Subject: [PATCH] CI: Fix workflow quotes During the last month of CI changes a few anomalies have snuck into the main workflow file. Make quotes uniform. --- .github/workflows/rust.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index df03e87ba..0c3567568 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -14,9 +14,9 @@ jobs: outputs: nightly_version: ${{ steps.read_toolchain.outputs.nightly_version }} steps: - - name: Checkout Crate + - name: "Checkout repo" uses: actions/checkout@v4 - - name: Read nightly version + - name: "Read nightly version" id: read_toolchain run: echo "nightly_version=$(cat nightly-version)" >> $GITHUB_OUTPUT @@ -115,7 +115,7 @@ jobs: uses: dtolnay/rust-toolchain@v1 with: toolchain: ${{ needs.Prepare.outputs.nightly_version }} - - name: Install clippy + - name: "Install clippy" run: rustup component add clippy - name: "Set dependencies" run: cp Cargo-${{ matrix.dep }}.lock Cargo.lock @@ -271,7 +271,7 @@ jobs: uses: dtolnay/rust-toolchain@v1 with: toolchain: ${{ needs.Prepare.outputs.nightly_version }} - - name: Install src + - name: "Install rust-src" run: rustup component add rust-src - name: "Set dependencies" run: cp Cargo-${{ matrix.dep }}.lock Cargo.lock