diff --git a/templates/github/workflows/ci.yml b/templates/github/workflows/ci.yml index 4508a64..0655489 100644 --- a/templates/github/workflows/ci.yml +++ b/templates/github/workflows/ci.yml @@ -49,9 +49,10 @@ jobs: - uses: julia-actions/julia-buildpkg@latest - uses: julia-actions/julia-runtest@latest <<#HAS_CODECOV>> - - uses: julia-actions/julia-uploadcodecov@latest - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + - uses: julia-actions/julia-processcoverage@v1 + - uses: codecov/codecov-action@v1 + with: + file: lcov.info <> <<#HAS_COVERALLS>> - uses: julia-actions/julia-uploadcoveralls@latest diff --git a/test/fixtures/AllPlugins/.github/workflows/ci.yml b/test/fixtures/AllPlugins/.github/workflows/ci.yml index 7172981..a0fd49e 100644 --- a/test/fixtures/AllPlugins/.github/workflows/ci.yml +++ b/test/fixtures/AllPlugins/.github/workflows/ci.yml @@ -36,9 +36,10 @@ jobs: ${{ runner.os }}- - uses: julia-actions/julia-buildpkg@latest - uses: julia-actions/julia-runtest@latest - - uses: julia-actions/julia-uploadcodecov@latest - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + - uses: julia-actions/julia-processcoverage@v1 + - uses: codecov/codecov-action@v1 + with: + file: lcov.info - uses: julia-actions/julia-uploadcoveralls@latest env: COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }}