From 6f4443ea43a4bff36c3e7349e4ff0980ff98f43a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 18 Nov 2024 09:45:08 +0000 Subject: [PATCH 1/2] chore(deps): update codecov/codecov-action action to v5 --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index caa72e13..73f9920f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -120,7 +120,7 @@ jobs: uv run -- coverage xml -o ./coverage.xml - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 with: file: coverage.xml env_vars: OS,PYTHON From ba2aee970b9800b5a20ba1b4f84e182a38f168af Mon Sep 17 00:00:00 2001 From: Shunichiro Nomura Date: Mon, 18 Nov 2024 19:18:40 +0900 Subject: [PATCH 2/2] rename `file` field to `fields` --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 73f9920f..2bb9d12e 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -122,7 +122,7 @@ jobs: - name: Upload coverage to Codecov uses: codecov/codecov-action@v5 with: - file: coverage.xml + files: coverage.xml env_vars: OS,PYTHON fail_ci_if_error: true token: ${{ secrets.CODECOV_TOKEN }}