4949 uses : shivammathur/setup-php@v2
5050 with :
5151 # Should be the higest supported version, so we can use the newest tools
52- php-version : ' 8.2 '
52+ php-version : ' 8.3 '
5353 tools : composer, composer-require-checker, composer-unused, phpcs, psalm
5454 # optional performance gain for psalm: opcache
5555 extensions : ctype, date, dom, fileinfo, filter, hash, intl, mbstring, opcache, openssl, pcre, spl, xml
@@ -115,7 +115,7 @@ jobs:
115115 uses : shivammathur/setup-php@v2
116116 with :
117117 # Should be the lowest supported version
118- php-version : ' 8.0 '
118+ php-version : ' 8.1 '
119119 extensions : ctype, date, dom, fileinfo, filter, hash, intl, mbstring, openssl, pcre, spl, xml
120120 tools : composer
121121 coverage : none
@@ -155,7 +155,7 @@ jobs:
155155 fail-fast : false
156156 matrix :
157157 operating-system : [ubuntu-latest]
158- php-versions : ['8.0 ', '8.1 ', '8.2 ']
158+ php-versions : ['8.1 ', '8.2 ', '8.3 ']
159159
160160 steps :
161161 - name : Setup PHP, with composer and extensions
@@ -195,15 +195,15 @@ jobs:
195195 run : composer install --no-progress --prefer-dist --optimize-autoloader
196196
197197 - name : Run unit tests with coverage
198- if : ${{ matrix.php-versions == '8.2 ' }}
198+ if : ${{ matrix.php-versions == '8.3 ' }}
199199 run : vendor/bin/phpunit
200200
201201 - name : Run unit tests (no coverage)
202- if : ${{ matrix.php-versions != '8.2 ' }}
202+ if : ${{ matrix.php-versions != '8.3 ' }}
203203 run : vendor/bin/phpunit --no-coverage
204204
205205 - name : Save coverage data
206- if : ${{ matrix.php-versions == '8.2 ' }}
206+ if : ${{ matrix.php-versions == '8.3 ' }}
207207 uses : actions/upload-artifact@v4
208208 with :
209209 name : coverage-data
@@ -217,7 +217,7 @@ jobs:
217217 fail-fast : true
218218 matrix :
219219 operating-system : [windows-latest]
220- php-versions : ['8.0 ', '8.1 ', '8.2 ']
220+ php-versions : ['8.1 ', '8.2 ', '8.3 ']
221221
222222 steps :
223223 - name : Setup PHP, with composer and extensions
0 commit comments