Skip to content

Commit 4175071

Browse files
committed
Use token when uploading unit test code coverage data to Codecov from workflow
Codecov claims a token is not needed when using the codecov/codecov-action GitHub Actions action in workflows of a public repository: https://github.com/codecov/codecov-action#usage > For public repositories, no token is needed However, experience shows that that step of the workflow is subject to intermittent spurious failures caused by a 404 error during the upload attempt: ``` [2023-06-26T09:18:51.453Z] ['error'] There was an error running the uploader: Error uploading to https://codecov.io: Error: There was an error fetching the storage URL during POST: 404 - {'detail': ErrorDetail(string='Unable to locate build via Github Actions API. Please upload with the Codecov repository upload token to resolve issue.', code='not_found')} ``` It is suggested that this can be avoided by providing the upload token: https://community.codecov.com/t/upload-issues-unable-to-locate-build-via-github-actions-api/3954 It should be noted that PRs from forks do not have access to repository secrets, so the recommended approach of using an encrypted repository secret for the token would mean that PRs from forks (the workflow runs for which don't have access to secrets) would still be subject to the same intermittent spurious workflow run failures. The alternative solution is to add the token in plaintext directly in the workflow. The security implications of that approach are described here: https://community.codecov.com/t/upload-issues-unable-to-locate-build-via-github-actions-api/3954 > Public repositories that rely on PRs via forks will find that they cannot effectively use Codecov if the token is > stored as a GitHub secret. The scope of the Codecov token is only to confirm that the coverage uploaded comes from a > specific repository, not to pull down source code or make any code changes. > > For this reason, we recommend that teams with public repositories that rely on PRs via forks consider the security > ramifications of making the Codecov token available as opposed to being in a secret. > > A malicious actor would be able to upload incorrect or misleading coverage reports to a specific repository if they > have access to your upload token, but would not be able to pull down source code or make any code changes. We have evaluated the risks of exposing the token and are intentionally choosing to accept the possibility of abuse.
1 parent bab107a commit 4175071

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Diff for: .github/workflows/libraries_report-size-deltas.yml

+15
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,23 @@ jobs:
5050
- name: Display code coverage report
5151
run: coverage report
5252

53+
# A token is used to avoid intermittent spurious job failures caused by rate limiting.
54+
- name: Set up Codecov upload token
55+
run: |
56+
if [[ "${{ github.repository }}" == "arduino/report-size-deltas" ]]; then
57+
# In order to avoid uploads of data from forks, only use the token for runs in the parent repo.
58+
# Token is intentionally exposed.
59+
# See: https://community.codecov.com/t/upload-issues-unable-to-locate-build-via-github-actions-api/3954
60+
CODECOV_TOKEN="3889efcb-4ed3-4d07-980a-99a3896bd9b8"
61+
else
62+
# codecov/codecov-action does unauthenticated upload if empty string is passed via the `token` input.
63+
CODECOV_TOKEN=""
64+
fi
65+
echo "CODECOV_TOKEN=$CODECOV_TOKEN" >> "$GITHUB_ENV"
66+
5367
- name: Upload coverage report to Codecov
5468
uses: codecov/codecov-action@v3
5569
with:
5670
file: ${{ env.COVERAGE_DATA_FILENAME }}
5771
fail_ci_if_error: true
72+
token: ${{ env.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)