diff --git a/.github/workflows/cypress-tests-runner.yml b/.github/workflows/cypress-tests-runner.yml index 46290096a11c..611fd35d1ba3 100644 --- a/.github/workflows/cypress-tests-runner.yml +++ b/.github/workflows/cypress-tests-runner.yml @@ -341,21 +341,15 @@ jobs: - name: Install grcov if: ${{ env.RUN_TESTS == 'true' }} - uses: taiki-e/install-action@v2.41.10 - with: - tool: grcov - checksum: true + run: cargo install grcov + # uses: taiki-e/install-action@v2.41.10 + # with: + # tool: grcov + # checksum: true - name: Install Rust Nightly if: ${{ env.RUN_TESTS == 'true' }} - uses: dtolnay/rust-toolchain@master - with: - toolchain: nightly-2025-01-02 - - - name: Stable Rust Default - if: ${{ env.RUN_TESTS == 'true' }} - run: rustup default stable - + run: rustup toolchain install nightly-2025-01-02 - name: Install sccache if: ${{ env.RUN_TESTS == 'true' }}