@@ -28,10 +28,10 @@ jobs:
2828
2929 strategy :
3030 matrix :
31- php : ['5.4', 'latest', '8.4 ']
31+ php : ['5.4', 'latest', '8.5 ']
3232
3333 name : " Lint: PHP ${{ matrix.php }}"
34- continue-on-error : ${{ matrix.php == '8.4 ' }}
34+ continue-on-error : ${{ matrix.php == '8.5 ' }}
3535
3636 steps :
3737 - name : Checkout code
6767 # - PHPCS will run without errors on PHP 5.4 - 7.4 on any supported version.
6868 # - PHP 8.0 needs PHPCS 3.5.7+ to run without errors, and we require a higher minimum version.
6969 # - PHP 8.1 needs PHPCS 3.6.1+ to run without errors, but works best with 3.7.1+, and we require at least this minimum version.
70- # - PHP 8.2 and 8.3 need PHPCS 3.8.0+ to run without errors (though the errors don't affect the tests).
70+ # - PHP 8.2, 8.3 and 8.4 need PHPCS 3.8.0+ to run without errors (though the errors don't affect the tests).
7171 matrix :
72- php : ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
72+ php : ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
7373 dependencies : ['lowest', 'stable']
7474
7575 include :
@@ -80,16 +80,16 @@ jobs:
8080 dependencies : ' dev'
8181 - php : ' 7.4'
8282 dependencies : ' dev'
83- - php : ' 8.3 '
83+ - php : ' 8.4 '
8484 dependencies : ' dev'
8585
8686 # Test against upcoming PHP version.
87- - php : ' 8.4 '
87+ - php : ' 8.5 '
8888 dependencies : ' dev'
8989
9090 name : " Test: PHP ${{ matrix.php }} - PHPCS ${{ matrix.dependencies }}"
9191
92- continue-on-error : ${{ matrix.php == '8.4 ' }}
92+ continue-on-error : ${{ matrix.php == '8.5 ' }}
9393
9494 steps :
9595 - name : Checkout code
0 commit comments