This is an automated email from the ASF dual-hosted git repository.
sunlan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git
The following commit(s) were added to refs/heads/master by this push:
new 6dd5d4542c Downgrade codecov-action to v3
6dd5d4542c is described below
commit 6dd5d4542c93ead8a62c5e63c3c6a8d74dc3abd1
Author: Daniel Sun <[email protected]>
AuthorDate: Mon Nov 25 08:01:38 2024 +0800
Downgrade codecov-action to v3
codecov-action v5 fails to upload coverage report even if the token is
provided as v3 does.
---
.github/workflows/groovy-build-coverage.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/groovy-build-coverage.yml
b/.github/workflows/groovy-build-coverage.yml
index 25d2afd2ff..e48bb8beb2 100644
--- a/.github/workflows/groovy-build-coverage.yml
+++ b/.github/workflows/groovy-build-coverage.yml
@@ -41,7 +41,7 @@ jobs:
run: ./gradlew -Pcoverage=true jacocoAllReport
timeout-minutes: 60
- name: Upload coverage to Codecov
- uses: codecov/codecov-action@v5
+ uses: codecov/codecov-action@v3 # Use v3 for now because v5 fails to
upload coverage report
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true