5151 uses : shivammathur/setup-php@v2
5252 with :
5353 # Should be the higest supported version, so we can use the newest tools
54- php-version : ' 8.3 '
54+ php-version : ' 8.4 '
5555 tools : composer, composer-require-checker, composer-unused, phpcs
5656 extensions : ctype, date, dom, filter, hash, intl, mbstring, opcache, openssl, pcre, spl, xml
5757
@@ -148,7 +148,7 @@ jobs:
148148 fail-fast : false
149149 matrix :
150150 operating-system : [ubuntu-latest]
151- php-versions : ['8.1', '8.2', '8.3']
151+ php-versions : ['8.1', '8.2', '8.3', '8.4' ]
152152
153153 steps :
154154 - name : Setup PHP, with composer and extensions
@@ -189,15 +189,15 @@ jobs:
189189 run : composer install --no-progress --prefer-dist --optimize-autoloader
190190
191191 - name : Run unit tests with coverage
192- if : ${{ matrix.php-versions == '8.3 ' }}
192+ if : ${{ matrix.php-versions == '8.4 ' }}
193193 run : vendor/bin/phpunit
194194
195195 - name : Run unit tests (no coverage)
196- if : ${{ matrix.php-versions != '8.3 ' }}
196+ if : ${{ matrix.php-versions != '8.4 ' }}
197197 run : vendor/bin/phpunit --no-coverage
198198
199199 - name : Save coverage data
200- if : ${{ matrix.php-versions == '8.3 ' }}
200+ if : ${{ matrix.php-versions == '8.4 ' }}
201201 uses : actions/upload-artifact@v4
202202 with :
203203 name : coverage-data
@@ -211,7 +211,7 @@ jobs:
211211 fail-fast : true
212212 matrix :
213213 operating-system : [windows-latest]
214- php-versions : ['8.1', '8.2', '8.3']
214+ php-versions : ['8.1', '8.2', '8.3', '8.4' ]
215215
216216 steps :
217217 - name : Setup PHP, with composer and extensions
0 commit comments