From 60896f8947de125dd2228ab41be609cd9d5b97e9 Mon Sep 17 00:00:00 2001 From: Christophe Coevoet Date: Tue, 9 Dec 2025 15:49:03 +0100 Subject: [PATCH] Add newer PHP versions in the CI setup --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8bb6644..102928a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,22 +9,22 @@ jobs: name: Check composer.json runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - uses: shivammathur/setup-php@v2 with: coverage: none - php-version: '8.2' + php-version: '8.4' - run: composer validate --strict --no-check-lock coding_standards: name: Coding standards runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - uses: shivammathur/setup-php@v2 with: coverage: none - php-version: '8.2' + php-version: '8.4' - name: Install dependencies run: composer update --ansi --no-progress --prefer-dist --no-interaction - run: composer phpcs @@ -36,12 +36,12 @@ jobs: strategy: fail-fast: false matrix: - php: [ '5.6', '7.0', '7.1', '7.4', '8.0', '8.1', '8.2' ] + php: [ '5.6', '7.0', '7.1', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5' ] min_stability: [ '' ] name_suffix: [ '' ] composer_flags: [ '' ] include: - - php: '8.2' + - php: '8.4' min_stability: 'dev' name_suffix: ' (dev deps)' - php: '5.6' @@ -50,7 +50,7 @@ jobs: composer_flags: '--prefer-lowest' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - uses: shivammathur/setup-php@v2 with: coverage: none