From 94a5b9663000b7a4aa0b9133594fd52336d64dd5 Mon Sep 17 00:00:00 2001 From: Mikalai Radchuk <509198+m1kola@users.noreply.github.com> Date: Tue, 18 Jun 2024 16:25:25 +0200 Subject: [PATCH] Fix codecov-action params (#949) * `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 7f0c426aa..69cad529a 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 ff01ae01b..43ce247e7 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 }}