From 6bddca80b927fd1c3bb393932c74c7690099ba03 Mon Sep 17 00:00:00 2001 From: Mikalai Radchuk <509198+m1kola@users.noreply.github.com> Date: Thu, 20 Jun 2024 14:04:59 +0200 Subject: [PATCH] Fix codecov-action params (#1361) * `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/unit.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit.yaml b/.github/workflows/unit.yaml index 1c6bb9ac3..dcb9d0c95 100644 --- a/.github/workflows/unit.yaml +++ b/.github/workflows/unit.yaml @@ -22,6 +22,6 @@ jobs: - run: sed -i'' "s:^github.com/$GITHUB_REPOSITORY/::" coverage.out - uses: codecov/codecov-action@v4 with: + disable_search: true files: coverage.out - functionalities: fixes token: ${{ secrets.CODECOV_TOKEN }}