From 51af937e6187e680e859fd0837b621aa22358ac1 Mon Sep 17 00:00:00 2001 From: faissaloux Date: Sun, 24 May 2026 14:09:15 +0100 Subject: [PATCH] limit codecov upload to only php8.4 --- .github/workflows/tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 54225c2..dce6f9e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -52,7 +52,8 @@ jobs: run: composer test:unit -- --coverage-clover ./coverage.xml - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v4.0.1 + uses: codecov/codecov-action@v6 + if: matrix.php == '8.4' with: token: ${{ secrets.CODECOV_TOKEN }} files: ./coverage.xml