Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(dependabot): bump codecov/codecov-action from 3 to 4 #6701

Merged
merged 9 commits into from Apr 11, 2024
7 changes: 5 additions & 2 deletions .github/workflows/reusable_coverage_upload.yml
@@ -1,5 +1,8 @@
on:
workflow_call:
secrets:
codecov_token:
required: true


jobs:
Expand Down Expand Up @@ -36,7 +39,7 @@ jobs:
python -Im coverage report --format=markdown --skip-empty --skip-covered >> $GITHUB_STEP_SUMMARY

- name: Upload coverage data
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
token: ${{ secrets.codecov_token }}
2 changes: 2 additions & 0 deletions .github/workflows/test_comprehensive.yml
Expand Up @@ -110,6 +110,8 @@ jobs:
- test
- test_examples
uses: ./.github/workflows/reusable_coverage_upload.yml
secrets:
codecov_token: ${{ secrets.CODECOV_TOKEN }}

synchronize_bot_repository:
name: Synchronize bot repository
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test_pull_requests.yml
Expand Up @@ -186,6 +186,8 @@ jobs:
- test
- test_examples
uses: ./.github/workflows/reusable_coverage_upload.yml
secrets:
codecov_token: ${{ secrets.CODECOV_TOKEN }}


test_benchmarks:
Expand Down