github: update goveralls tool

The goverall tool had a bug regarding the module versioning of
golang packages see also
https://github.com/mattn/goveralls/pull/222 for more background.
Goveralls is wrapped by another library to make it available for
github actions. So the relevant PR which is referenced here in
LND is:
https://github.com/shogo82148/actions-goveralls/pull/521.
This commit is contained in:
ziggie
2024-12-11 15:39:23 +01:00
parent d6eeaec246
commit c6bdbbe222

View File

@@ -220,7 +220,7 @@ jobs:
run: make ${{ matrix.unit_type }} run: make ${{ matrix.unit_type }}
- name: Send coverage - name: Send coverage
uses: shogo82148/actions-goveralls@v1 uses: ziggie1984/actions-goveralls@c440f43938a4032b627d2b03d61d4ae1a2ba2b5c
if: matrix.unit_type == 'btcd unit-cover' if: matrix.unit_type == 'btcd unit-cover'
with: with:
path-to-profile: coverage.txt path-to-profile: coverage.txt
@@ -284,7 +284,7 @@ jobs:
- name: Send coverage - name: Send coverage
if: ${{ contains(matrix.args, 'cover=1') }} if: ${{ contains(matrix.args, 'cover=1') }}
uses: shogo82148/actions-goveralls@v1 uses: ziggie1984/actions-goveralls@c440f43938a4032b627d2b03d61d4ae1a2ba2b5c
with: with:
path-to-profile: coverage.txt path-to-profile: coverage.txt
flag-name: 'itest-${{ matrix.name }}' flag-name: 'itest-${{ matrix.name }}'
@@ -434,6 +434,6 @@ jobs:
needs: [unit-test, ubuntu-integration-test] needs: [unit-test, ubuntu-integration-test]
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: shogo82148/actions-goveralls@v1 - uses: ziggie1984/actions-goveralls@c440f43938a4032b627d2b03d61d4ae1a2ba2b5c
with: with:
parallel-finished: true parallel-finished: true