From d7e58fa875138aa7de46740d3b6fc9c2b1442b9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 24 Feb 2024 19:23:10 +0100 Subject: [PATCH] Fix: Slide step --- .github/workflows/integrate.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 2f089fc9..6d590cc2 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -553,14 +553,14 @@ jobs: key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-phpunit-${{ matrix.phpunit-version }}-${{ hashFiles('composer.lock') }}" restore-keys: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-phpunit-${{ matrix.phpunit-version }}-" - - name: "Remove platform configuration with composer" - if: "matrix.dependencies != 'locked'" - run: "composer config platform.php --ansi --unset" - - name: "Remove incompatible dependencies with composer" if: "matrix.dependencies != 'locked'" run: "composer remove ergebnis/php-cs-fixer-config psalm/plugin-phpunit vimeo/psalm --ansi --dev --no-interaction --no-progress" + - name: "Remove platform configuration with composer" + if: "matrix.dependencies != 'locked'" + run: "composer config platform.php --ansi --unset" + - name: "Require phpunit/phpunit:^${{ matrix.phpunit-version }}" if: "matrix.dependencies != 'locked'" run: "composer require phpunit/phpunit:^${{ matrix.phpunit-version }} --ansi --no-interaction --no-progress --update-with-all-dependencies"