From d5c080a67f6e3c1d7935f11a58ca35246cfc0bd6 Mon Sep 17 00:00:00 2001 From: Mikalai Radchuk Date: Mon, 17 Jun 2024 14:59:00 +0200 Subject: [PATCH] Fix codecov-action params * `functionalities` param is no longer exist. It was used to enable file fixes to ignore common lines from coverage. This feature is now seems to be on by default. * Adding `disable_search` because we do not need for the codecov action to search for coverage files: we explicitly provide files. Signed-off-by: Mikalai Radchuk --- .github/workflows/e2e.yaml | 2 +- .github/workflows/unit-test.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 7f0c426aac..69cad529a3 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -38,7 +38,7 @@ jobs: - uses: codecov/codecov-action@v4 with: + disable_search: true files: e2e-cover.out flags: e2e - functionalities: fixes token: ${{ secrets.CODECOV_TOKEN }} diff --git a/.github/workflows/unit-test.yaml b/.github/workflows/unit-test.yaml index ff01ae01b1..43ce247e79 100644 --- a/.github/workflows/unit-test.yaml +++ b/.github/workflows/unit-test.yaml @@ -25,7 +25,7 @@ jobs: - uses: codecov/codecov-action@v4 with: + disable_search: true files: cover.out flags: unit - functionalities: fixes token: ${{ secrets.CODECOV_TOKEN }}