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.3 '
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, mbstring, opcache, openssl, \
@@ -159,7 +159,7 @@ jobs:
159159 fail-fast : false
160160 matrix :
161161 operating-system : [ubuntu-latest]
162- php-versions : ['8.1', '8.2', '8.3']
162+ php-versions : ['8.1', '8.2', '8.3', '8.4' ]
163163
164164 steps :
165165 - name : Setup PHP, with composer and extensions
@@ -199,15 +199,15 @@ jobs:
199199 run : composer install --no-progress --prefer-dist --optimize-autoloader
200200
201201 - name : Run unit tests with coverage
202- if : ${{ matrix.php-versions == '8.3 ' }}
202+ if : ${{ matrix.php-versions == '8.4 ' }}
203203 run : vendor/bin/phpunit
204204
205205 - name : Run unit tests (no coverage)
206- if : ${{ matrix.php-versions != '8.3 ' }}
206+ if : ${{ matrix.php-versions != '8.4 ' }}
207207 run : vendor/bin/phpunit --no-coverage
208208
209209 - name : Save coverage data
210- if : ${{ matrix.php-versions == '8.3 ' }}
210+ if : ${{ matrix.php-versions == '8.4 ' }}
211211 uses : actions/upload-artifact@v4
212212 with :
213213 name : coverage-data
@@ -221,7 +221,7 @@ jobs:
221221 fail-fast : true
222222 matrix :
223223 operating-system : [windows-latest]
224- php-versions : ['8.1', '8.2', '8.3']
224+ php-versions : ['8.1', '8.2', '8.3', '8.4' ]
225225
226226 steps :
227227 - name : Setup PHP, with composer and extensions
0 commit comments