From 2ba035285afff22adf8590ee3a1354e246482b8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ewilan=20Rivi=C3=A8re?= Date: Thu, 21 Nov 2024 14:58:25 +0100 Subject: [PATCH] Update Codecov action to v5 and add PHP 8.4 to test matrix --- .github/workflows/codecov.yml | 2 +- .github/workflows/run-tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 6d68c66..13ae0c3 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -63,7 +63,7 @@ jobs: run: vendor/bin/pest --coverage - name: Send code coverage - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} verbose: false diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 3f7e8fc..5f886a2 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,7 +9,7 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest] - php: [8.1, 8.2, 8.3] + php: [8.1, 8.2, 8.3, 8.4] stability: [prefer-stable] name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }}