Skip to content

Commit 83b35bd

Browse files
Bump codecov/codecov-action from 3 to 4 (#227)
* 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] <support@github.com> * Use token for coverage upload. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Andrew Walbran <qwandor@google.com>
1 parent d24079b commit 83b35bd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/rust.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ jobs:
3939
- name: Run tests with coverage
4040
run: cargo llvm-cov test --all-features --codecov --output-path codecov-report.json
4141
- name: Upload coverage to codecov.io
42-
uses: codecov/codecov-action@v3
42+
uses: codecov/codecov-action@v4
4343
with:
44-
files: codecov-report.json
4544
fail_ci_if_error: true
45+
files: codecov-report.json
46+
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)