From 9f3d09ba14f0646ab1a4927c27cb5e0fa4047928 Mon Sep 17 00:00:00 2001 From: Leonardo Gama <51037424+Leo10Gama@users.noreply.github.com> Date: Wed, 27 Nov 2024 10:46:44 -0800 Subject: [PATCH] chore: un-bump codecov/codecov-action from 5 to 4 (#32314) Reverts aws/aws-cdk#32173 Codecov v5 is throwing errors with some PRs (e.g. [failing workflow](https://github.com/aws/aws-cdk/actions/runs/12012047131/job/33482380518)) and reportedly has many issues. The quick-fix until they resolve their issues is to downgrade the version of codecov we are using back to v4. --- .github/workflows/codecov.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 23dbd4c031198..0920cc4e5515f 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -28,7 +28,7 @@ jobs: run: cd packages/aws-cdk && yarn test - name: Upload results to Codecov - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v4 with: directory: packages/aws-cdk/coverage fail_ci_if_error: true