coverallsapp/github-action

Version 0.6.11 broke our CI

mcallegari opened this issue · 4 comments

Hi, we're having CI failures since a couple of days.
Looks like the new version doesn't like our coverage.info file anymore

Working CI
image

Broken CI
image

Our Actions YAML

      - name: Coveralls
        if: ${{ startsWith( matrix.task, 'coverage') }}
        uses: coverallsapp/github-action@v2
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}
          file: coverage/coverage.info
          format: lcov

Do we have to change any parameter with the new version or is this a bug?
Thanks!

Fixed in 0.6.12

Hi @mcallegari. This is fixed in the latest version of Coverage Reporter (v0.6.12). (Thanks, @Giorgi.)

That said, if you ever encounter this kind of issue with a new version of Coverage Reporter, you can always pin the version to your last known working version with the coverage-reporter-version input option.

Thanks for a so quick fix!