@@ -241,49 +241,49 @@ jobs:
241
241
[[ "" != "$PACKAGES" ]]
242
242
243
243
-
244
- name : Setup PHP 7.4
244
+ name : Setup PHP 8.1
245
245
if : " always() && steps.config.outcome == 'success'"
246
246
uses : shivammathur/setup-php@v2
247
247
with :
248
248
coverage : " none"
249
- php-version : " 7.4 "
249
+ php-version : " 8.1 "
250
250
251
251
-
252
- name : Create-project with skeleton ^5
252
+ name : Create-project with skeleton ^6
253
253
if : " always() && steps.config.outcome == 'success'"
254
254
run : |
255
255
set -x
256
256
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
259
259
composer config extra.symfony.allow-contrib ${{ inputs.contrib && 'true' || 'false' }}
260
260
composer config minimum-stability dev
261
261
export SYMFONY_ENDPOINT=https://raw.githubusercontent.com/${{ github.repository }}/flex/pull-${{ github.event.number }}/index.json
262
262
composer require -W --ansi $PACKAGES
263
263
EXIT_CODE=$?
264
264
265
265
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"
267
267
fi
268
268
269
269
exit $EXIT_CODE
270
270
271
271
-
272
- name : Setup PHP 8.1
272
+ name : Setup PHP 8.2
273
273
if : " always() && steps.config.outcome == 'success'"
274
274
uses : shivammathur/setup-php@v2
275
275
with :
276
276
coverage : " none"
277
- php-version : " 8.1 "
277
+ php-version : " 8.2 "
278
278
279
279
-
280
- name : Create-project with skeleton ^6
280
+ name : Create-project with skeleton ^7
281
281
if : " always() && steps.config.outcome == 'success'"
282
282
run : |
283
283
set -x
284
284
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
287
287
composer config extra.symfony.allow-contrib ${{ inputs.contrib && 'true' || 'false' }}
288
288
composer config minimum-stability dev
289
289
export SYMFONY_ENDPOINT=https://raw.githubusercontent.com/${{ github.repository }}/flex/pull-${{ github.event.number }}/index.json
0 commit comments