From 8935eb58b041952f59ebf106fcd81ad89bc022b9 Mon Sep 17 00:00:00 2001 From: Pascal Baljet Date: Tue, 12 Nov 2024 16:41:18 +0100 Subject: [PATCH 1/2] Add PHP 8.4 to test matrix --- .github/workflows/run-tests.yml | 6 ++++-- composer.json | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index af84718..b23d283 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -14,8 +14,8 @@ jobs: fail-fast: true matrix: os: [ubuntu-20.04] - php: [8.3, 8.2, 8.1] - laravel: ['10.*', '11.*'] + php: [8.4, 8.3, 8.2, 8.1] + laravel: ["10.*", "11.*"] ffmpeg: [5.0, 4.4] dependency-version: [prefer-lowest, prefer-stable] include: @@ -26,6 +26,8 @@ jobs: exclude: - laravel: 11.* php: 8.1 + - laravel: 10.* + php: 8.4 name: ${{ matrix.os }} - P${{ matrix.php }} - L${{ matrix.laravel }} - FF${{ matrix.ffmpeg }} - ${{ matrix.dependency-version }} diff --git a/composer.json b/composer.json index 039c45a..edbc653 100755 --- a/composer.json +++ b/composer.json @@ -20,7 +20,7 @@ } ], "require": { - "php": "^8.1|^8.2|^8.3", + "php": "^8.1|^8.2|^8.3|^8.4", "illuminate/contracts": "^10.0|^11.0", "php-ffmpeg/php-ffmpeg": "^1.2", "ramsey/collection": "^2.0" From 3a69cb5812b45769534da01f386e77ae23fc76e1 Mon Sep 17 00:00:00 2001 From: Pascal Baljet Date: Tue, 12 Nov 2024 16:42:17 +0100 Subject: [PATCH 2/2] Update run-tests.yml --- .github/workflows/run-tests.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index b23d283..1ac924e 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -45,7 +45,6 @@ jobs: - name: Install FFmpeg uses: Iamshankhadeep/setup-ffmpeg@ffmpeg-5.0-20220119 with: - token: ${{ secrets.CI_GITHUB_TOKEN }} version: ${{ matrix.ffmpeg }} id: setup-ffmpeg