From bb164ef87e1e7dd83a458bd709a8fc346dc17dc7 Mon Sep 17 00:00:00 2001 From: Maxim Grischenko Date: Tue, 4 Jun 2024 10:43:23 +0200 Subject: [PATCH] fix codecov --- .github/workflows/pull-request.yml | 8 ++++---- .github/workflows/push-develop.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index b0d6e2f9e..6f539926b 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -28,17 +28,17 @@ jobs: run: mvn clean verify -ntp -PIT - name: Step 5 - Upload coverage unittests reports to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} - gcov_ignore: '!*datasafe-business*' + exclude: '*datasafe-business*' flags: unittests verbose: true - name: Step 6 - Upload coverage e2e tests reports to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} - gcov_include: '*datasafe-business*' + exclude: '!*datasafe-business*' flags: e2e_tests verbose: true \ No newline at end of file diff --git a/.github/workflows/push-develop.yml b/.github/workflows/push-develop.yml index cebd686b3..381b4427d 100644 --- a/.github/workflows/push-develop.yml +++ b/.github/workflows/push-develop.yml @@ -37,17 +37,17 @@ jobs: GPG_OWNERTRUST: ${{ secrets.GPG_OWNERTRUST }} - name: Step 6 - Upload coverage unittests reports to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} - gcov_ignore: '!*datasafe-business*' + exclude: '*datasafe-business*' flags: unittests verbose: true - name: Step 7 - Upload coverage e2e tests reports to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} - gcov_include: '*datasafe-business*' + exclude: '!*datasafe-business*' flags: e2e_tests verbose: true \ No newline at end of file