From 06ef815ec89ab23a3ed06d9d0452a0524bf09d59 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Tue, 23 Feb 2021 20:10:25 +0100 Subject: [PATCH] Quote caret to avoid issues with cmd.exe --- .github/workflows/continuous-integration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index de6d4edd8..dc42c92e1 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -50,7 +50,7 @@ jobs: dependencies: highest os: ubuntu-latest experimental: false - - php-version: "7.4" # 8.0 fails to start the test suite for some reason on windows + - php-version: "8.0" os: windows-latest dependencies: locked experimental: false @@ -101,7 +101,7 @@ jobs: - name: "Require latest PHPUnitBridge for PHP 8.x" if: "startsWith(matrix.php-version, '8.')" - run: composer require --no-update --dev symfony/phpunit-bridge:^5.2 + run: 'composer require --no-update --dev "symfony/phpunit-bridge:^5.2"' - name: "Update dev requirements to latest available for the current PHP even on locked builds as they are not bundled dependencies" run: "composer update ${{ env.COMPOSER_FLAGS }} symfony/phpunit-bridge phpspec/prophecy phpdocumentor/* sebastian/* doctrine/instantiator"