ci: replace CodeCov with GitHub native coverage API for Go - #5959
Open
remyleone with code-coverage-agent[bot] wants to merge 5 commits into
Open
ci: replace CodeCov with GitHub native coverage API for Go#5959remyleone with code-coverage-agent[bot] wants to merge 5 commits into
remyleone with code-coverage-agent[bot] wants to merge 5 commits into
Conversation
Code Coverage OverviewLanguages: Go Go / code-coverage-agentThe overall coverage in commit 5f2fd27 in the Show a code coverage summary of the most covered files.
Updated |
Co-authored-by: remyleone <300834+remyleone@users.noreply.github.com>
Co-authored-by: remyleone <300834+remyleone@users.noreply.github.com>
Co-authored-by: remyleone <300834+remyleone@users.noreply.github.com>
estellesoulard
force-pushed
the
code-coverage-agent/setup-code-coverage-reporting
branch
3 times, most recently
from
August 13, 2026 14:22
1e5b1cb to
b6adfae
Compare
estellesoulard
force-pushed
the
code-coverage-agent/setup-code-coverage-reporting
branch
from
August 13, 2026 14:33
b6adfae to
a943240
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Sets up Go code coverage reporting using GitHub's native coverage API, replacing the previous CodeCov integration. Also fixes an arbitrary file write vulnerability in
actions/download-artifact.Changes
go.mod/go.sum: Addedgithub.com/boumenot/gocover-cobertura v1.5.0as ago tooldependency for converting Go's nativecoverage.outprofile to Cobertura XML.gitignore: Addedcoverage.outandcoverage.xmlto exclude coverage artifacts from commits.github/workflows/coverage.yml: Rewrote coverage workflow:go tool gotestsumwith-coverprofile=coverage.out -covermode=count ./...go tool gocover-coberturaactions/upload-code-coverage@v1withlanguage: Gocoverage/upload-coverage-go) so the privilegedcode-quality: writetoken is isolated from the code-executing jobpushtomaster(baseline),pull_request, andmerge_groupactions/download-artifactbumped from@v4→@v8to fix arbitrary file write CVE (affected>= 4.0.0, < 4.1.3);actions/upload-artifactbumped to@v7(current latest major)Community Note
Release note for CHANGELOG: