diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index b7da5e74..28cf4037 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -21,9 +21,9 @@ jobs: uses: actions/checkout@v4 - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@nightly + - uses: dtolnay/rust-toolchain@stable with: - components: llvm-tools-preview + components: llvm-tools - name: Install Protoc uses: arduino/setup-protoc@v3 with: @@ -34,7 +34,7 @@ jobs: tool: cargo-llvm-cov - name: Generate code coverage run: | - cargo +nightly llvm-cov --tests -j 2 --all-features --lcov --output-path lcov.info + cargo llvm-cov --tests -j 2 --all-features --lcov --output-path lcov.info - name: Coveralls uses: coverallsapp/github-action@v2