From cde51692f995f9b76c9c0abd173c447a71296947 Mon Sep 17 00:00:00 2001 From: chris Date: Thu, 30 Oct 2025 17:18:45 +0100 Subject: [PATCH] ci: add tests for PHP 84 and 8.5 bump github action versions --- .github/workflows/php.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 5d7ac19..3df2e81 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -12,9 +12,9 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.4', '8.0', '8.1', '8.2', '8.3'] + php-version: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5'] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Use PHP ${{ matrix.php-version }} uses: shivammathur/setup-php@v2 with: @@ -31,7 +31,7 @@ jobs: runs-on: ubuntu-latest name: PHPStan steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Use PHP 8.3 uses: shivammathur/setup-php@v2 with: @@ -40,4 +40,4 @@ jobs: - name: Install dependencies run: composer install --no-progress - name: Run PHPStan - run: composer run-script analyse \ No newline at end of file + run: composer run-script analyse