From 34bed63126fa94e85b7f81b24ddd0d4d194051ea Mon Sep 17 00:00:00 2001 From: Michael Engel Date: Wed, 22 May 2024 13:49:57 +0200 Subject: [PATCH] Pin coverage reporter version Due to an issue with the coveralls coverage reporter, the generated code coverage can not be pushed to coveralls and leads to a failed integration test pipeline. Pinning the coverage reporter to v0.6.9 is the suggested workaround: https://github.com/coverallsapp/github-action/issues/205 Signed-off-by: Michael Engel --- .github/workflows/integration-tests.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index a22740197c..21499fdea5 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -147,8 +147,12 @@ jobs: - name: Report to Coveralls if: always() - uses: coverallsapp/github-action@v2 + uses: coverallsapp/github-action@v2.3.0 with: github-token: ${{ secrets.GITHUB_TOKEN }} file: '/var/tmp/coveralls.info' format: lcov + # Pin the version of the coverage reporter as suggested in + # https://github.com/coverallsapp/github-action/issues/205#issuecomment-2113945931 + # TODO: Remove when the coverage reporter issue is resolved + coverage-reporter-version: v0.6.9