From 3c406b877b3d580fe4f8b18655c58d60b42a5e9d Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Mon, 19 May 2025 17:00:16 +0200 Subject: [PATCH] ci: fix "unexpected input 'file'" warning in code coverage job --- .github/workflows/CICD.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index 853b8235f..0453ff5e5 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -1119,7 +1119,7 @@ jobs: uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} - file: ${{ steps.run_test_cov.outputs.report }} + files: ${{ steps.run_test_cov.outputs.report }} ## flags: IntegrationTests, UnitTests, ${{ steps.vars.outputs.CODECOV_FLAGS }} flags: ${{ steps.vars.outputs.CODECOV_FLAGS }} name: codecov-umbrella