From d8fd5532fec448348b405bf72732ef0afb483d8a Mon Sep 17 00:00:00 2001 From: Niklas Keller Date: Thu, 27 Nov 2025 07:19:34 +0100 Subject: [PATCH 1/2] Add PHP 8.5 to build pipeline --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1de4122..5bc0bf8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,10 @@ jobs: php-version: 8.4 composer-flags: '--ignore-platform-req=php+' psalm: none + - operating-system: 'ubuntu-latest' + php-version: 8.5 + composer-flags: '--ignore-platform-req=php+' + psalm: none name: PHP ${{ matrix.php-version }} ${{ matrix.job-description }} runs-on: ${{ matrix.operating-system }} From 655adf7205f82c8773c8b515687a7d33ae0652d4 Mon Sep 17 00:00:00 2001 From: Niklas Keller Date: Thu, 27 Nov 2025 07:23:41 +0100 Subject: [PATCH 2/2] Remove nick-invision/retry@v2 --- .github/workflows/ci.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5bc0bf8..70f6483 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,15 +68,10 @@ jobs: composer- - name: Install dependencies - uses: nick-invision/retry@v2 - with: - timeout_minutes: 5 - max_attempts: 5 - retry_wait_seconds: 30 - command: | - composer update --optimize-autoloader --no-interaction --no-progress ${{ matrix.composer-flags }} - php -v - composer info -D + run: | + composer update --optimize-autoloader --no-interaction --no-progress ${{ matrix.composer-flags }} + php -v + composer info -D - name: Run tests run: php vendor/bin/phpunit