Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump codecov/codecov-action from 4 to 5 #2610

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,12 @@ jobs:
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v4
- uses: codecov/codecov-action@v5
with:
file: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
plugins: noop
disable_search: true
Comment on lines +49 to +50
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think these were supported before too. The first disables various plugins for collecting/gathering coverage data and the latter just disables search for coverage files. We don't need this since everything is in lcov.info.

- name: Submit coverage to Coveralls
continue-on-error: true # TODO: https://github.com/JuliaDocs/Documenter.jl/issues/2343
uses: coverallsapp/github-action@v2
Expand All @@ -72,10 +74,12 @@ jobs:
- name: Run test/examples/tests_latex.jl
run: julia --color=yes --project=test/examples --code-coverage test/examples/tests_latex.jl
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v4
- uses: codecov/codecov-action@v5
with:
file: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
plugins: noop
disable_search: true
- name: Submit coverage to Coveralls
continue-on-error: true # TODO: https://github.com/JuliaDocs/Documenter.jl/issues/2343
uses: coverallsapp/github-action@v2
Expand Down Expand Up @@ -117,10 +121,12 @@ jobs:
Pkg.develop(PackageSpec(path=pwd()))'
- run: julia --color=yes --project=test/prerender --code-coverage test/prerender/prerender.jl
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v4
- uses: codecov/codecov-action@v5
with:
file: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
plugins: noop
disable_search: true
- name: Submit coverage to Coveralls
continue-on-error: true # TODO: https://github.com/JuliaDocs/Documenter.jl/issues/2343
uses: coverallsapp/github-action@v2
Expand Down Expand Up @@ -170,10 +176,12 @@ jobs:
- name: Run online linkcheck tests
run: julia --color=yes --project=test/online --code-coverage test/online/runtests.jl
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v4
- uses: codecov/codecov-action@v5
with:
file: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
plugins: noop
disable_search: true
- name: Submit coverage to Coveralls
continue-on-error: true # TODO: https://github.com/JuliaDocs/Documenter.jl/issues/2343
uses: coverallsapp/github-action@v2
Expand Down
Loading