coverallsapp / github-action

Coveralls Github Action
https://coveralls.io
MIT License
455 stars 76 forks source link

Version 0.6.11 broke our CI #211

Closed mcallegari closed 1 month ago

mcallegari commented 1 month ago

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!

Giorgi commented 1 month ago

Same here: https://github.com/Giorgi/DuckDB.NET/actions/runs/9192485497/job/25281239699

image

Giorgi commented 1 month ago

Fixed in 0.6.12

afinetooth commented 1 month ago

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.

mcallegari commented 1 month ago

Thanks for a so quick fix!