diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 92ef666..dbf1af3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,7 +60,7 @@ jobs: - name: Upload coverage reports # Only upload coverage if we have a token (skip for Dependabot PRs) if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12' && (github.event_name != 'pull_request' || github.actor != 'dependabot[bot]') - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f with: token: ${{ secrets.CODECOV_TOKEN }} files: ./coverage.xml @@ -71,7 +71,7 @@ jobs: - name: Upload coverage reports (tokenless) # Use tokenless upload for Dependabot PRs if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12' && github.event_name == 'pull_request' && github.actor == 'dependabot[bot]' - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f with: files: ./coverage.xml flags: unittests