From dec75e5e73cbc566a745229fbdec54992f4472fb Mon Sep 17 00:00:00 2001 From: Feanil Patel Date: Mon, 8 Apr 2024 16:00:53 -0400 Subject: [PATCH] build: Switch to a newer codecov action to fix a build error. Try using OIDC instead of specific tokens. --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e87b356..8be2305 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,8 @@ jobs: - name: Upload coverage to CodeCov if: matrix.python-version == '3.8' && matrix.toxenv == 'django42' - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v4 with: file: ./coverage.xml fail_ci_if_error: true + use_oidc: true