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 @@ -191,7 +191,7 @@ jobs:
191191 - name : Install PHP
192192 uses : shivammathur/setup-php@v2
193193 with :
194- php-version : ${{ matrix.php }}
194+ php-version : ${{ matrix.php == '8.5' && '8.4' || matrix.php }}
195195 ini-values : ${{ steps.set_ini.outputs.PHP_INI }}
196196 extensions : ${{ matrix.extensions }}
197197 coverage : none
@@ -207,6 +207,14 @@ jobs:
207207 composer-options : ${{ matrix.php == '8.5' && '--ignore-platform-req=php+' || '' }}
208208 custom-cache-suffix : $(date -u "+%Y-%m")
209209
210+ - name : " Install PHP again (PHP 8.5)"
211+ if : ${{ matrix.php == '8.5' }}
212+ uses : shivammathur/setup-php@v2
213+ with :
214+ php-version : ${{ matrix.php }}
215+ ini-values : ${{ steps.set_ini.outputs.PHP_INI }}
216+ coverage : none
217+
210218 - name : Grab PHPUnit version
211219 id : phpunit_version
212220 shell : bash
You can’t perform that action at this time.
0 commit comments