From 196fe5bba8b3872ab3330917ea57479e20b8b41e Mon Sep 17 00:00:00 2001 From: Cristhian Garcia Date: Thu, 25 Apr 2024 10:42:25 -0500 Subject: [PATCH] build: update codecov action to use repo-specific tokens (#417) * build: replace codecov with python-coverage-comment-action * build: update codecov action to use repo-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 9ceb20ed..2b46deef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,8 @@ jobs: - name: Run Coverage if: matrix.python-version == '3.8' && matrix.toxenv=='django42' - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: flags: unittests fail_ci_if_error: true + token: ${{ secrets.CODECOV_TOKEN }}