From dcc8e9cbddd0181637af5a54a0d17434c9557fd7 Mon Sep 17 00:00:00 2001 From: Sylvain Fabre Date: Tue, 24 Mar 2026 23:18:29 +0100 Subject: [PATCH] Upgrade analysis tools to latest on lowest dependency runs Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fba17bb..6d985c4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,6 +29,10 @@ jobs: with: dependency-versions: ${{ matrix.dependency-versions }} + - name: Upgrade analysis tools to latest + if: ${{ matrix.dependency-versions == 'lowest' }} + run: composer update phpstan/phpstan rector/rector phpunit/phpunit squizlabs/php_codesniffer --with-all-dependencies --no-interaction + - run: vendor/bin/phpcs if: ${{ failure() || success() }}