From 65efaf32561d83481288063d67858e314af64f06 Mon Sep 17 00:00:00 2001 From: Stephan Grootveld Date: Wed, 10 Jun 2026 13:21:37 +0200 Subject: [PATCH 1/2] Upgrade codecov to 6.0.0 --- .circleci/config.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5ab1784..05da466 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,7 +1,7 @@ version: 2.1 orbs: - codecov: codecov/codecov@4.1.0 + codecov: codecov/codecov@6.0.0 jobs: build: @@ -70,9 +70,15 @@ jobs: name: Run Unit Tests command: | mkdir -p ./logs/phpunit - vendor/bin/phpunit -d memory_limit=1G --coverage-clover coverage.xml --log-junit logs/phpunit/junit.xml --testdox-html logs/phpunit/testdox.html + vendor/bin/phpunit -d memory_limit=1G --coverage-clover logs/phpunit/coverage.xml --log-junit logs/phpunit/junit.xml --testdox-html logs/phpunit/testdox.html - codecov/upload: - file: coverage.xml + report_type: coverage + disable_search: true + files: logs/phpunit/coverage.xml + - codecov/upload: + report_type: test_results + disable_search: true + files: logs/phpunit/junit.xml - store_artifacts: path: ./logs/phpunit destination: phpunit From beb75f082db0cb974aca891c69c3a82590ee1340 Mon Sep 17 00:00:00 2001 From: Stephan Grootveld Date: Fri, 19 Jun 2026 10:43:22 +0200 Subject: [PATCH 2/2] Upgrade codecov --- .circleci/config.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 05da466..21fdbd3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -71,6 +71,7 @@ jobs: command: | mkdir -p ./logs/phpunit vendor/bin/phpunit -d memory_limit=1G --coverage-clover logs/phpunit/coverage.xml --log-junit logs/phpunit/junit.xml --testdox-html logs/phpunit/testdox.html + - codecov/upload: report_type: coverage disable_search: true @@ -79,6 +80,7 @@ jobs: report_type: test_results disable_search: true files: logs/phpunit/junit.xml + - store_artifacts: path: ./logs/phpunit destination: phpunit