From d3299847d83ff3df171945f85fa9e25b8221a3cf Mon Sep 17 00:00:00 2001 From: Guilhem Fanton <8671905+gfanton@users.noreply.github.com> Date: Tue, 19 Nov 2024 15:09:42 +0900 Subject: [PATCH] feat: bump codecov to v5 (#3152) bump codecov to v5
Contributors' checklist... - [ ] Added new tests, or not needed, or not feasible - [ ] Provided an example (e.g. screenshot) to aid review or the PR is self-explanatory - [ ] Updated the official documentation or not needed - [ ] No breaking changes were made, or a `BREAKING CHANGE: xxx` message was included in the description - [ ] Added references to related issues and PRs - [ ] Provided any useful hints for running manual tests
--------- Signed-off-by: gfanton <8671905+gfanton@users.noreply.github.com> --- .github/workflows/test_template.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_template.yml b/.github/workflows/test_template.yml index b032718ff62..ccbae792c78 100644 --- a/.github/workflows/test_template.yml +++ b/.github/workflows/test_template.yml @@ -57,11 +57,11 @@ jobs: go tool covdata textfmt -v 1 $filter -i=$GOCOVERDIR,$TXTARCOVERDIR -o gocoverage.out - name: Upload go coverage to Codecov - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 with: disable_search: true fail_ci_if_error: true - file: ${{ inputs.modulepath }}/gocoverage.out + files: ${{ inputs.modulepath }}/gocoverage.out flags: ${{ inputs.modulepath }} token: ${{ secrets.codecov-token }} verbose: true # keep this enable as it help debugging when coverage fail randomly on the CI