diff --git a/.github/workflows/soroban-codecov.yml b/.github/workflows/soroban-codecov.yml index 8ca37f4..5a35cb2 100644 --- a/.github/workflows/soroban-codecov.yml +++ b/.github/workflows/soroban-codecov.yml @@ -18,8 +18,13 @@ jobs: uses: actions/checkout@v3 with: submodules: true - - name: Install Rust - run: rustup update stable + # - name: Install Rust + # run: rustup update stable + ## Temporary workaround to fix codecov issue with latest version (1.82.0) + - name: Install Rust 1.81.0 + run: | + rustup install 1.81.0 + rustup default 1.81.0 - name: Cache Rust dependencies uses: Swatinem/rust-cache@v2 - name: Install cargo-llvm-cov @@ -40,4 +45,4 @@ jobs: token: ${{ secrets.CODECOV_TOKEN }} files: lcov.info flags: rust - fail_ci_if_error: true \ No newline at end of file + fail_ci_if_error: true