1919 strategy :
2020 fail-fast : false
2121 matrix :
22- php-version : ['8.1 ', '8.2 ', '8.3', '8.4 ']
22+ php-version : ['8.3 ', '8.4 ', '8.5 ']
2323
2424 uses : simplesamlphp/simplesamlphp-test-framework/.github/workflows/reusable_phplinter.yml@v1.11.0
2525 with :
4646 fail-fast : false
4747 matrix :
4848 operating-system : [ubuntu-latest]
49- php-versions : ['8.1 ', '8.2 ', '8.3', '8.4 ']
49+ php-versions : ['8.3 ', '8.4 ', '8.5 ']
5050
5151 steps :
5252 - name : Setup PHP, with composer and extensions
@@ -86,15 +86,15 @@ jobs:
8686 run : composer install --no-progress --prefer-dist --optimize-autoloader
8787
8888 - name : Run unit tests with coverage
89- if : ${{ matrix.php-versions == '8.4 ' }}
89+ if : ${{ matrix.php-versions == '8.5 ' }}
9090 run : vendor/bin/phpunit
9191
9292 - name : Run unit tests (no coverage)
93- if : ${{ matrix.php-versions != '8.4 ' }}
93+ if : ${{ matrix.php-versions != '8.5 ' }}
9494 run : vendor/bin/phpunit --no-coverage
9595
9696 - name : Save coverage data
97- if : ${{ matrix.php-versions == '8.4 ' }}
97+ if : ${{ matrix.php-versions == '8.5 ' }}
9898 uses : actions/upload-artifact@v6
9999 with :
100100 name : coverage-data
@@ -109,7 +109,7 @@ jobs:
109109 fail-fast : true
110110 matrix :
111111 operating-system : [windows-latest]
112- php-versions : ['8.1 ', '8.2 ', '8.3', '8.4 ']
112+ php-versions : ['8.3 ', '8.4 ', '8.5 ']
113113
114114 steps :
115115 - name : Setup PHP, with composer and extensions
@@ -164,7 +164,7 @@ jobs:
164164 uses : shivammathur/setup-php@v2
165165 with :
166166 # Should be the higest supported version, so we can use the newest tools
167- php-version : ' 8.4 '
167+ php-version : ' 8.5 '
168168 tools : composer, composer-require-checker, composer-unused, phpcs, psalm
169169 # optional performance gain for psalm: opcache
170170 extensions : ctype, date, dom, fileinfo, filter, hash, intl, mbstring, opcache, openssl, pcre, posix, spl, xml
@@ -220,7 +220,7 @@ jobs:
220220 uses : shivammathur/setup-php@v2
221221 with :
222222 # Should be the lowest supported version
223- php-version : ' 8.1 '
223+ php-version : ' 8.3 '
224224 extensions : ctype, date, dom, fileinfo, filter, hash, intl, mbstring, openssl, pcre, posix, spl, xml
225225 tools : composer
226226 coverage : none
0 commit comments