File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ jobs:
199
199
- name : Install PHP
200
200
uses : shivammathur/setup-php@v2
201
201
with :
202
- php-version : ${{ matrix.php }}
202
+ php-version : ${{ matrix.php == '8.5' && '8.4' || matrix.php }}
203
203
ini-values : ${{ steps.set_ini.outputs.PHP_INI }}
204
204
coverage : none
205
205
@@ -229,6 +229,14 @@ jobs:
229
229
composer-options : ${{ matrix.php == '8.5' && '--ignore-platform-req=php+' || '' }}
230
230
custom-cache-suffix : $(date -u "+%Y-%m")
231
231
232
+ - name : " Install PHP again (PHP 8.5)"
233
+ if : ${{ matrix.php == '8.5' }}
234
+ uses : shivammathur/setup-php@v2
235
+ with :
236
+ php-version : ${{ matrix.php }}
237
+ ini-values : ${{ steps.set_ini.outputs.PHP_INI }}
238
+ coverage : none
239
+
232
240
- name : ' PHPCS: set the path to PHP'
233
241
run : php "bin/phpcs" --config-set php_path php
234
242
You can’t perform that action at this time.
0 commit comments