diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 749e5f20..660ed3fe 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -35,18 +35,11 @@ jobs: cache-all-crates: "true" key: "${{ matrix.os }}-${{ matrix.target }}" - - name: Install stable toolchain - uses: actions-rs/toolchain@v1 + - uses: dtolnay/rust-toolchain@stable with: - profile: minimal - toolchain: stable - - - name: Install cargo-llvm-cov - if: ${{matrix.coverage}} - uses: taiki-e/install-action@cargo-llvm-cov - - - name: Install nextest - uses: taiki-e/install-action@nextest + components: llvm-tools-preview + - uses: taiki-e/install-action@cargo-llvm-cov + - uses: taiki-e/install-action@nextest - name: Collect coverage data if: ${{matrix.coverage}}