From 749fc87fb22793023091011632894cb33b4294e5 Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Mon, 18 Nov 2024 16:16:59 +0100 Subject: [PATCH] ci: fix deprecated input for codecov-action Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com> --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2a73214..44d1b47 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -46,7 +46,7 @@ jobs: uses: codecov/codecov-action@v5 if: env.RUN_CODECOV == 'true' with: - file: ./coverage/clover.xml + files: ./coverage/clover.xml flags: unit token: ${{ secrets.CODECOV_TOKEN }} @@ -166,6 +166,6 @@ jobs: uses: codecov/codecov-action@v5 if: env.RUN_CODECOV == 'true' with: - file: ./coverage/clover.xml + files: ./coverage/clover.xml flags: itg token: ${{ secrets.CODECOV_TOKEN }}