@@ -241,49 +241,49 @@ jobs:
241241 [[ "" != "$PACKAGES" ]]
242242
243243 -
244- name : Setup PHP 7.4
244+ name : Setup PHP 8.1
245245 if : " always() && steps.config.outcome == 'success'"
246246 uses : shivammathur/setup-php@v2
247247 with :
248248 coverage : " none"
249- php-version : " 7.4 "
249+ php-version : " 8.1 "
250250
251251 -
252- name : Create-project with skeleton ^5
252+ name : Create-project with skeleton ^6
253253 if : " always() && steps.config.outcome == 'success'"
254254 run : |
255255 set -x
256256 php -v
257- composer create-project --ansi "symfony/skeleton:^5" v5
258- cd v5
257+ composer create-project --ansi "symfony/skeleton:^6" v6
258+ cd v6
259259 composer config extra.symfony.allow-contrib ${{ inputs.contrib && 'true' || 'false' }}
260260 composer config minimum-stability dev
261261 export SYMFONY_ENDPOINT=https://raw.githubusercontent.com/${{ github.repository }}/flex/pull-${{ github.event.number }}/index.json
262262 composer require -W --ansi $PACKAGES
263263 EXIT_CODE=$?
264264
265265 if [[ EXIT_CODE -eq 2 ]]; then
266- echo -e "\n#\n#\n# You can ignore this error if your package does not support Symfony 5 \n#\n#\n#\n"
266+ echo -e "\n#\n#\n# You can ignore this error if your package does not support Symfony 6 \n#\n#\n#\n"
267267 fi
268268
269269 exit $EXIT_CODE
270270
271271 -
272- name : Setup PHP 8.1
272+ name : Setup PHP 8.2
273273 if : " always() && steps.config.outcome == 'success'"
274274 uses : shivammathur/setup-php@v2
275275 with :
276276 coverage : " none"
277- php-version : " 8.1 "
277+ php-version : " 8.2 "
278278
279279 -
280- name : Create-project with skeleton ^6
280+ name : Create-project with skeleton ^7
281281 if : " always() && steps.config.outcome == 'success'"
282282 run : |
283283 set -x
284284 php -v
285- composer create-project --ansi "symfony/skeleton:^6" v6
286- cd v6
285+ composer create-project --ansi "symfony/skeleton:^7" v7
286+ cd v7
287287 composer config extra.symfony.allow-contrib ${{ inputs.contrib && 'true' || 'false' }}
288288 composer config minimum-stability dev
289289 export SYMFONY_ENDPOINT=https://raw.githubusercontent.com/${{ github.repository }}/flex/pull-${{ github.event.number }}/index.json
0 commit comments