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 }}