ci: rewrite step for installing Rust to specify the toolchain as an argument rather than - where it seems to be invalid when using a variable - the uses: revision

This commit is contained in:
J / Jacob Babich
2024-10-04 17:10:03 -04:00
parent 01ce1e85a8
commit 576a8e99c0

View File

@@ -73,9 +73,10 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install ${{ matrix.supporteds.toolchain }} Rust toolchain - name: Install ${{ matrix.supporteds.toolchain }} Rust toolchain
uses: dtolnay/rust-toolchain@${{ matrix.supporteds.toolchain }} uses: dtolnay/rust-toolchain@master
with: with:
targets: ${{ matrix.supporteds.target }} targets: ${{ matrix.supporteds.target }}
toolchain: ${{ matrix.supporteds.toolchain }}
- name: Install Nextest - name: Install Nextest
uses: taiki-e/install-action@cargo-nextest uses: taiki-e/install-action@cargo-nextest