Skip to content

Commit a258da8

Browse files
build(deps): bump codecov/codecov-action from 3 to 4 (#385)
* build(deps): bump codecov/codecov-action from 3 to 4 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3 to 4. - [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...v4) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: ReenigneArcher <[email protected]>
1 parent a436e51 commit a258da8

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/CI.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,12 @@ jobs:
241241
242242
- name: Upload coverage
243243
# any except canceled or skipped
244-
if: always() && (steps.test.outcome == 'success' || steps.test.outcome == 'failure')
245-
uses: codecov/codecov-action@v3
244+
if: >-
245+
always() &&
246+
(steps.test.outcome == 'success' || steps.test.outcome == 'failure') &&
247+
startsWith(github.repository, 'LizardByte/')
248+
uses: codecov/codecov-action@v4
246249
with:
250+
fail_ci_if_error: true
247251
flags: ${{ runner.os }}
252+
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)