From 5316303408ae647d286bc6272711c25fa103db8b Mon Sep 17 00:00:00 2001 From: David Hagen Date: Sun, 12 May 2024 07:34:46 -0400 Subject: [PATCH] Use Codecov token to upload coverage (#108) --- .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 408f3e1..f875e44 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,8 +58,9 @@ jobs: - name: Combine coverage and generate report run: poetry run nox -s coverage - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: + token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true lint: runs-on: ubuntu-22.04