From 5b2d04b7e02bdd9edcc559cb3fc470ea7e3c058a 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 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index a22740197c..ec137631b3 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -152,3 +152,7 @@ jobs: 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