From 448df848b7cc6e528ca5b0d1ede5e28b8d9823e4 Mon Sep 17 00:00:00 2001 From: Larry Garfield Date: Fri, 3 Oct 2025 12:24:28 -0500 Subject: [PATCH] Run CI on PHP 8.5. --- .github/workflows/quality-assurance.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/quality-assurance.yaml b/.github/workflows/quality-assurance.yaml index 0368476..8a8ed40 100644 --- a/.github/workflows/quality-assurance.yaml +++ b/.github/workflows/quality-assurance.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php: [ '8.1', '8.2', '8.3', '8.4' ] + php: [ '8.1', '8.2', '8.3', '8.4', '8.5' ] composer-flags: [ '' ] phpunit-flags: [ '--coverage-text' ] steps: @@ -28,7 +28,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php: [ '8.1', '8.2', '8.3', '8.4' ] + php: [ '8.4', '8.5' ] composer-flags: [ '' ] steps: - uses: actions/checkout@v2