diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index c4876b9..df73b5a 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -18,16 +18,10 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Cache dependencies - uses: actions/cache@v4 - with: - path: ~/.composer/cache/files - key: dependencies-php-8.3-illuminate-11.*-composer-${{ hashFiles('composer.json') }} - - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: 8.3 + php-version: 8.4 extensions: dom, libxml, mbstring, zip, pcntl coverage: xdebug diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ce7a74b..e1bb96e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: true matrix: - php: [ 8.1, 8.2, 8.3 ] + php: [ 8.1, 8.2, 8.3, 8.4 ] illuminate: [ ^10.0, ^11.0 ] stability: [ prefer-lowest, prefer-stable ] include: @@ -27,6 +27,8 @@ jobs: exclude: - php: 8.1 illuminate: ^11.0 + - php: 8.4 + illuminate: ^10.0 name: P${{ matrix.php }} - I${{ matrix.illuminate }} - ${{ matrix.stability }} @@ -34,12 +36,6 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Cache dependencies - uses: actions/cache@v4 - with: - path: ~/.composer/cache/files - key: dependencies-php-${{ matrix.php }}-illuminate-${{ matrix.illuminate }}-composer-${{ hashFiles('composer.json') }} - - name: Setup PHP uses: shivammathur/setup-php@v2 with: diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fe491c..abbd0ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## [Unreleased](https://github.com/markwalet/laravel-changelog/compare/v1.10.0...master) +### Added +- Included PHP 8.4 in test matrix + ## [v1.10.0 (2024-03-13)](https://github.com/markwalet/laravel-changelog/compare/v1.9.0...v1.10.0) ### Added