From c407072e1cb4f7239cddb1d74f2b378642747624 Mon Sep 17 00:00:00 2001 From: Jean Burellier Date: Sat, 24 Feb 2024 15:02:36 +0100 Subject: [PATCH] chore: update github action version --- .github/workflows/ci.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5bef1f67ed..9818dcea8b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -178,9 +178,9 @@ jobs: mv "./${{ matrix.name }}" "./coverage/${{ matrix.name }}" - name: Upload code coverage - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: coverage + name: coverage-${{ matrix.name }} path: ./coverage retention-days: 1 @@ -195,16 +195,17 @@ jobs: run: sudo apt-get -y install lcov - name: Collect coverage reports - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: - name: coverage + name: coverage-* + merge-multiple: true path: ./coverage - name: Merge coverage reports shell: bash run: find ./coverage -name lcov.info -exec printf '-a %q\n' {} \; | xargs lcov -o ./coverage/lcov.info - - name: Upload coverage report - uses: coverallsapp/github-action@master - with: - github-token: ${{ secrets.GITHUB_TOKEN }} + # - name: Upload coverage report + # uses: coverallsapp/github-action@master + # with: + # github-token: ${{ secrets.GITHUB_TOKEN }}