diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index fa0fa07..21c20e0 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -27,10 +27,8 @@ jobs: - name: Unit test with code coverage analysis on Python ${{ matrix.python-version }} run: tox - name: Upload test coverage report to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: - # We specify the token below to mitigate the impact of the bug mentioned here: - # https://community.codecov.com/t/upload-issues-unable-to-locate-build-via-github-actions-api/3954 token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true flags: python${{ matrix.python-version }} diff --git a/.github/workflows/pull-requests.yml b/.github/workflows/pull-requests.yml index 025f4d7..02b51e5 100644 --- a/.github/workflows/pull-requests.yml +++ b/.github/workflows/pull-requests.yml @@ -28,10 +28,8 @@ jobs: - name: Unit test with code coverage analysis on Python ${{ matrix.python-version }} run: tox - name: Upload test coverage report to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: - # We specify the token below to mitigate the impact of the bug mentioned here: - # https://community.codecov.com/t/upload-issues-unable-to-locate-build-via-github-actions-api/3954 token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true flags: python${{ matrix.python-version }}