Merge rust-bitcoin/rust-bitcoin#2780: CI: Fix workflow quotes

61b428b2d9 CI: Fix workflow quotes (Tobin C. Harding)

Pull request description:

  During the last month of CI changes a few anomalies have snuck into the main workflow file.

  Make quotes uniform.

ACKs for top commit:
  storopoli:
    ACK 61b428b2d9
  apoelstra:
    ACK 61b428b2d9

Tree-SHA512: ec2c296aa0d2d4fe5d8b2747bf5812b27784b632241ccf889dde0d03fcc2e72fc7d2fb8614e6dbdbec49c0b81db9807933928f27d23b5eb11f6ba71b28b5c29e
This commit is contained in:
Andrew Poelstra 2024-05-20 13:37:00 +00:00
commit 3d9ceb52c4
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
1 changed files with 4 additions and 4 deletions

View File

@ -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