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, phpcs, composer-require-checker, composer-unused
5656 extensions : ctype, date, filter, pcre, spl
5757 coverage : none
@@ -143,7 +143,7 @@ jobs:
143143 fail-fast : false
144144 matrix :
145145 operating-system : [ubuntu-latest]
146- php-versions : ['8.1', '8.2', '8.3']
146+ php-versions : ['8.1', '8.2', '8.3', '8.4' ]
147147
148148 steps :
149149 - name : Setup PHP, with composer and extensions
@@ -183,15 +183,15 @@ jobs:
183183 run : composer install --no-progress --prefer-dist --optimize-autoloader
184184
185185 - name : Run unit tests with coverage
186- if : ${{ matrix.php-versions == '8.3 ' }}
186+ if : ${{ matrix.php-versions == '8.4 ' }}
187187 run : vendor/bin/phpunit
188188
189189 - name : Run unit tests (no coverage)
190- if : ${{ matrix.php-versions != '8.3 ' }}
190+ if : ${{ matrix.php-versions != '8.4 ' }}
191191 run : vendor/bin/phpunit --no-coverage
192192
193193 - name : Save coverage data
194- if : ${{ matrix.php-versions == '8.3 ' }}
194+ if : ${{ matrix.php-versions == '8.4 ' }}
195195 uses : actions/upload-artifact@v4
196196 with :
197197 name : coverage-data
@@ -205,7 +205,7 @@ jobs:
205205 fail-fast : true
206206 matrix :
207207 operating-system : [windows-latest]
208- php-versions : ['8.1', '8.2', '8.3']
208+ php-versions : ['8.1', '8.2', '8.3', '8.4' ]
209209
210210 steps :
211211 - name : Setup PHP, with composer and extensions
0 commit comments