From c816511c2f7c3424d63f13ed9e44bee9fa922beb Mon Sep 17 00:00:00 2001 From: sprak Date: Sun, 9 Aug 2026 16:25:31 -0400 Subject: [PATCH 1/2] Fix last code coverage reference and bump CI action versions --- .github/workflows/code-quality.yml | 4 ++-- Taskfile.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index 1295b29..b0b6e70 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -41,7 +41,7 @@ jobs: coverage: [true] composer-flags: [''] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} @@ -49,7 +49,7 @@ jobs: coverage: pcov tools: composer:v2 - name: Install Task - uses: arduino/setup-task@v2 + uses: arduino/setup-task@v3 with: version: 3.x - name: Composer update diff --git a/Taskfile.yml b/Taskfile.yml index 71f2ff4..9ca7de2 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -22,7 +22,7 @@ tasks: # Run all tests with code coverage. tests-code-coverage: cmds: - - vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml + - vendor/bin/phpunit --coverage-text --coverage-clover coverage/clover.xml unit-tests: cmds: From 85f8ea0fa1839373f4a6eb171efd3a2522b78a24 Mon Sep 17 00:00:00 2001 From: sprak Date: Sun, 9 Aug 2026 16:26:14 -0400 Subject: [PATCH 2/2] Fix last code coverage reference and bump CI action versions --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3309fc4..4d721a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## 3.4.2 + +Update CI dependencies and fix final code coverage path reference. + ## 3.4.1 Fixing `master` references to point to `main` including code coverage setup.