From 9cf2c885708325b3cd67519a4a108fc29cb5c4f4 Mon Sep 17 00:00:00 2001 From: anderstorstensson Date: Thu, 18 Jun 2026 08:27:44 +0200 Subject: [PATCH] ci: use plural files input for codecov-action v7 codecov-action v5+ removed the singular file input in favor of files. With disable_search enabled the upload found no coverage file, failing the job on push to main. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7bc015d..fd59d43 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -52,7 +52,7 @@ jobs: - uses: codecov/codecov-action@v7 with: fail_ci_if_error: ${{ github.event_name != 'pull_request' && true || false }} - file: ./cobertura.xml + files: ./cobertura.xml plugin: noop disable_search: true token: ${{ secrets.CODECOV_TOKEN }}