Skip to content

Commit 8f3b190

Browse files
committed
fix(ci): replace deprecated codecov test-results-action with codecov-action@v5
- Replace codecov/test-results-action@v1 with codecov/codecov-action@v5 - Add report_type: test_results parameter to distinguish from coverage upload - Resolves deprecation warning in GitHub Actions workflow - Both coverage and test results now use the same action with different configurations This addresses the warning: "This action is being deprecated in favor of 'codecov-action'. Please update CI accordingly to use 'codecov-action@v5' with 'report_type: test_results'."
1 parent d0ce1c7 commit 8f3b190

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/core-ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,11 @@ jobs:
6767
verbose: true
6868

6969
- name: Upload Test Results to Codecov
70-
uses: codecov/test-results-action@v1
70+
uses: codecov/codecov-action@v5
7171
if: always()
7272
with:
7373
token: ${{ secrets.CODECOV_TOKEN }}
74+
report_type: test_results
7475
files: ./test-results/junit.xml
7576
flags: mcp-tests
7677
name: codecov-test-results

0 commit comments

Comments
 (0)