diff --git a/.github/workflows/callable-qa.yml b/.github/workflows/callable-qa.yml index f19e1eafb..58b5f0ccd 100644 --- a/.github/workflows/callable-qa.yml +++ b/.github/workflows/callable-qa.yml @@ -241,21 +241,21 @@ jobs: [[ "" != "$PACKAGES" ]] - - name: Setup PHP 7.4 + name: Setup PHP 8.1 if: "always() && steps.config.outcome == 'success'" uses: shivammathur/setup-php@v2 with: coverage: "none" - php-version: "7.4" + php-version: "8.1" - - name: Create-project with skeleton ^5 + name: Create-project with skeleton ^6 if: "always() && steps.config.outcome == 'success'" run: | set -x php -v - composer create-project --ansi "symfony/skeleton:^5" v5 - cd v5 + composer create-project --ansi "symfony/skeleton:^6" v6 + cd v6 composer config extra.symfony.allow-contrib ${{ inputs.contrib && 'true' || 'false' }} composer config minimum-stability dev export SYMFONY_ENDPOINT=https://raw.githubusercontent.com/${{ github.repository }}/flex/pull-${{ github.event.number }}/index.json @@ -263,27 +263,27 @@ jobs: EXIT_CODE=$? if [[ EXIT_CODE -eq 2 ]]; then - echo -e "\n#\n#\n# You can ignore this error if your package does not support Symfony 5\n#\n#\n#\n" + echo -e "\n#\n#\n# You can ignore this error if your package does not support Symfony 6\n#\n#\n#\n" fi exit $EXIT_CODE - - name: Setup PHP 8.1 + name: Setup PHP 8.2 if: "always() && steps.config.outcome == 'success'" uses: shivammathur/setup-php@v2 with: coverage: "none" - php-version: "8.1" + php-version: "8.2" - - name: Create-project with skeleton ^6 + name: Create-project with skeleton ^7 if: "always() && steps.config.outcome == 'success'" run: | set -x php -v - composer create-project --ansi "symfony/skeleton:^6" v6 - cd v6 + composer create-project --ansi "symfony/skeleton:^7" v7 + cd v7 composer config extra.symfony.allow-contrib ${{ inputs.contrib && 'true' || 'false' }} composer config minimum-stability dev export SYMFONY_ENDPOINT=https://raw.githubusercontent.com/${{ github.repository }}/flex/pull-${{ github.event.number }}/index.json