From ce8a923541376d7e7907af90f6c91ff3abafd2f5 Mon Sep 17 00:00:00 2001 From: Mikalai Radchuk <509198+m1kola@users.noreply.github.com> Date: Mon, 24 Jun 2024 10:56:12 +0200 Subject: [PATCH] Fix codecov-action params (#349) * `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/go.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go.yaml b/.github/workflows/go.yaml index bef993018..63387e26d 100644 --- a/.github/workflows/go.yaml +++ b/.github/workflows/go.yaml @@ -33,8 +33,8 @@ jobs: run: go test -v ./... -coverprofile cover.out - uses: codecov/codecov-action@v4 with: + disable_search: true files: cover.out - functionalities: fixes token: ${{ secrets.CODECOV_TOKEN }} go-apidiff: