lizhimins opened a new pull request, #1302: URL: https://github.com/apache/rocketmq-clients/pull/1302
## Problem The [Golang Coverage CI job](https://github.com/apache/rocketmq-clients/actions/runs/29067603573/job/86282401552) failed at the `Upload to Codecov` step with: ``` 429 - {"message":"Rate limit reached. Please upload with the Codecov repository upload token to resolve issue."} ``` The root cause is that the golang coverage workflow was the **only** coverage workflow missing the `CODECOV_ACTION_KEY` token, causing uploads to hit Codecov's anonymous rate limit. Additionally, `actions/checkout@v2`, `actions/setup-go@v2`, and `codecov/codecov-action@v3` are all using deprecated Node.js 20. ## Changes | Change | Before | After | |--------|--------|-------| | Codecov token | missing | `${{ secrets.CODECOV_ACTION_KEY }}` | | `codecov/codecov-action` | v3 | v4 | | `actions/checkout` | v2 | v4 | | `actions/setup-go` | v2 | v5 | These changes align the golang coverage workflow with the existing `java_coverage.yml`, `cpp_coverage.yml`, and `rust_coverage.yaml` workflows. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
