From ba9fd31a47dad92a45224f161187afdb95494eb3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 03:35:59 +0000 Subject: [PATCH] chore(deps): bump codecov/codecov-action from 4 to 5 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4 to 5. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v4...v5) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c7dbcd4d..80f6ef07 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,20 +25,20 @@ jobs: run: make test/ci - name: Upload cmd coverage if: matrix.os == 'ubuntu-latest' && startsWith(matrix.go-version, 'stable') - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} disable_search: true - file: ./coverage-cmd.out + files: ./coverage-cmd.out flags: cmd fail_ci_if_error: true - name: Upload module coverage if: matrix.os == 'ubuntu-latest' && startsWith(matrix.go-version, 'stable') - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} disable_search: true - file: ./coverage-module.out + files: ./coverage-module.out flags: module fail_ci_if_error: true