From 63cb890d41555c243e69f88dd7fe82dff96a8aa4 Mon Sep 17 00:00:00 2001 From: Dor Forer Date: Tue, 5 May 2026 10:13:03 +0300 Subject: [PATCH] [MOD-15112] Fix codecov-action 'file' input renamed to 'files' in v5+ Renaming codecov/codecov-action's 'file' input to 'files'. The 'file' input was removed in v5.0.0 (renamed to 'files') and v6 did not reintroduce it. Combined with 'disable_search: true', the old 'file:' key was silently ignored and no coverage report was uploaded. --- .github/workflows/coverage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index c02ce658f..d94f439cf 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -69,7 +69,7 @@ jobs: - name: Upload coverage to Codecov uses: codecov/codecov-action@v6 # NOSONAR with: - file: ./bin/Linux-x86_64-debug/cov.info + files: ./bin/Linux-x86_64-debug/cov.info token: ${{ secrets.CODECOV_TOKEN }} disable_safe_directory: true disable_search: true