Unnamed repository; edit this file 'description' to name the repository.
CI: Match rust-toolchain action to MSRV version
| -rw-r--r-- | .github/workflows/build.yml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c9f198d0..a1ef53bd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,8 +17,8 @@ jobs: - name: Checkout sources uses: actions/checkout@v4 - - name: Install stable toolchain - uses: dtolnay/[email protected] + - name: Install MSRV toolchain + uses: dtolnay/[email protected] - uses: Swatinem/rust-cache@v2 with: @@ -38,8 +38,8 @@ jobs: - name: Checkout sources uses: actions/checkout@v4 - - name: Install stable toolchain - uses: dtolnay/[email protected] + - name: Install MSRV toolchain + uses: dtolnay/[email protected] - uses: Swatinem/rust-cache@v2 with: @@ -70,8 +70,8 @@ jobs: - name: Checkout sources uses: actions/checkout@v4 - - name: Install stable toolchain - uses: dtolnay/[email protected] + - name: Install MSRV toolchain + uses: dtolnay/[email protected] with: components: rustfmt, clippy @@ -98,8 +98,8 @@ jobs: - name: Checkout sources uses: actions/checkout@v4 - - name: Install stable toolchain - uses: dtolnay/[email protected] + - name: Install MSRV toolchain + uses: dtolnay/[email protected] - uses: Swatinem/rust-cache@v2 with: |