From 5a926a2d2ab91f43fec08534e794a51cbbdea745 Mon Sep 17 00:00:00 2001 From: Nick Santana Date: Wed, 20 Sep 2023 14:21:25 -0700 Subject: [PATCH] Remove bumping `codecov-action` to v4 Dependabot had bumped the codecov action to v4 and it passed CI, but now it doesn't. I'm guessing there was a mistake where they removed v4. At the time of this PR there are v4-beta tags. --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4993bab5..a59f7b77 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -194,7 +194,7 @@ jobs: # We can't just set to 0 or "" as the SGX code looks for it being set, not what the value is :( # The FFI bindings crates always report 100% because they have no code run: unset SGX_AESM_ADDR && cargo llvm-cov --locked --features sim --ignore-filename-regex '\/sys/src/lib\.rs' --workspace --lcov --output-path lcov.info - - uses: codecov/codecov-action@v4 + - uses: codecov/codecov-action@v3 with: files: lcov.info