5252 uses : shivammathur/setup-php@v2
5353 with :
5454 # Should be the higest supported version, so we can use the newest tools
55- php-version : ' 8.2 '
55+ php-version : ' 8.4 '
5656 tools : composer, composer-require-checker, composer-unused, phpcs, psalm
5757 # optional performance gain for psalm: opcache
5858 extensions : ctype, date, dom, fileinfo, filter, hash, intl, ldap, mbstring, opcache, openssl, pcre, spl, xml \
@@ -162,7 +162,7 @@ jobs:
162162 fail-fast : false
163163 matrix :
164164 operating-system : [ubuntu-latest]
165- php-versions : ['8.1', '8.2', '8.3']
165+ php-versions : ['8.1', '8.2', '8.3', '8.4' ]
166166
167167 steps :
168168 - name : Install libkrb5-dev
@@ -206,15 +206,15 @@ jobs:
206206 run : composer install --no-progress --prefer-dist --optimize-autoloader
207207
208208 - name : Run unit tests with coverage
209- if : ${{ matrix.php-versions == '8.2 ' }}
209+ if : ${{ matrix.php-versions == '8.4 ' }}
210210 run : vendor/bin/phpunit
211211
212212 - name : Run unit tests (no coverage)
213- if : ${{ matrix.php-versions != '8.2 ' }}
213+ if : ${{ matrix.php-versions != '8.4 ' }}
214214 run : vendor/bin/phpunit --no-coverage
215215
216216 - name : Save coverage data
217- if : ${{ matrix.php-versions == '8.2 ' }}
217+ if : ${{ matrix.php-versions == '8.4 ' }}
218218 uses : actions/upload-artifact@v4
219219 with :
220220 name : coverage-data
@@ -228,7 +228,7 @@ jobs:
228228 fail-fast : true
229229 matrix :
230230 operating-system : [windows-latest]
231- php-versions : ['8.1', '8.2', '8.3']
231+ php-versions : ['8.1', '8.2', '8.3', '8.4' ]
232232
233233 steps :
234234 - name : Setup PHP, with composer and extensions
0 commit comments