Skip to content

Commit a111e3e

Browse files
build(deps): bump codecov/codecov-action from 3.1.5 to 4.1.0 (#5241)
* build(deps): bump codecov/codecov-action from 3.1.5 to 4.1.0 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3.1.5 to 4.1.0. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v3.1.5...v4.1.0) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Add token flag --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tyler Yahn <[email protected]>
1 parent a55636c commit a111e3e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,12 @@ jobs:
7676
cp coverage.txt $TEST_RESULTS
7777
cp coverage.html $TEST_RESULTS
7878
- name: Upload coverage report
79-
uses: codecov/codecov-action@v3.1.5
79+
uses: codecov/codecov-action@v4.1.0
8080
with:
8181
file: ./coverage.txt
8282
fail_ci_if_error: true
8383
verbose: true
84+
token: ${{ secrets.CODECOV_TOKEN }}
8485
- name: Store coverage test output
8586
uses: actions/upload-artifact@v4
8687
with:
@@ -148,12 +149,13 @@ jobs:
148149
find . -name 'coverage.html' > "${TEST_RESULTS}/coverage.lst"
149150
tar -n -cf - -T "${TEST_RESULTS}/coverage.lst" | tar -C "${TEST_RESULTS}" -xvf -
150151
- name: Upload coverage report
151-
uses: codecov/codecov-action@v3.1.5
152+
uses: codecov/codecov-action@v4.1.0
152153
if: hashFiles('coverage.out') != ''
153154
with:
154155
file: ./coverage.out
155156
fail_ci_if_error: true
156157
verbose: true
158+
token: ${{ secrets.CODECOV_TOKEN }}
157159
- name: Store coverage test output
158160
uses: actions/upload-artifact@v4
159161
with:

0 commit comments

Comments
 (0)