From: Emil Velikov Date: Fri, 3 Jul 2026 21:21:38 +0000 (+0100) Subject: ci: use the correct argument for codecov X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c6ce8cea9c07d2b5a8a36e19cccf8ddbe06504f4;p=thirdparty%2Fkmod.git ci: use the correct argument for codecov With codecov v5, their release note states (et al): The following arguments have been changed - `file` (this has been deprecated in favor of `files`) Where they actually meant _removed_... Oopsie :-) Signed-off-by: Emil Velikov Link: https://github.com/kmod-project/kmod/pull/448 Signed-off-by: Lucas De Marchi --- diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 334d3c14..5132d3c1 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -52,4 +52,4 @@ jobs: uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0 with: token: ${{ secrets.CODECOV_TOKEN }} - file: builddir/meson-logs/coverage.xml + files: builddir/meson-logs/coverage.xml