From 1c4fa7237c150b68647c7e3fac4de041b02e4319 Mon Sep 17 00:00:00 2001 From: Tom Hu <88201630+thomasrockhu-codecov@users.noreply.github.com> Date: Sun, 26 Oct 2025 18:07:36 +0400 Subject: [PATCH] Chore: Move to using the codecov action instead of the test-results-action (#11179) --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a560c506e8..17e9a4109c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -181,10 +181,11 @@ jobs: pytest - name: Upload backend test results to Codecov if: always() - uses: codecov/test-results-action@v1 + uses: codecov/codecov-action@v5 with: flags: backend-python-${{ matrix.python-version }} files: junit.xml + report_type: test_results - name: Upload backend coverage to Codecov uses: codecov/codecov-action@v5 with: @@ -260,11 +261,12 @@ jobs: - name: Run Jest unit tests run: cd src-ui && pnpm run test --max-workers=2 --shard=${{ matrix.shard-index }}/${{ matrix.shard-count }} - name: Upload frontend test results to Codecov - uses: codecov/test-results-action@v1 if: always() + uses: codecov/codecov-action@v5 with: flags: frontend-node-${{ matrix.node-version }} directory: src-ui/ + report_type: test_results - name: Upload frontend coverage to Codecov uses: codecov/codecov-action@v5 with: -- 2.47.3