@@ -30,11 +30,11 @@ jobs:
3030
3131 strategy :
3232 matrix :
33- php : ['5.4', '7.0', '7.4', '8.0', '8.1 ', '8.2', '8.3 ']
33+ php : ['5.4', '7.0', '7.4', '8.0', '8.3 ', '8.4 ']
3434
3535 name : " Lint: PHP ${{ matrix.php }}"
3636
37- continue-on-error : ${{ matrix.php == '8.3 ' }}
37+ continue-on-error : ${{ matrix.php == '8.4 ' }}
3838
3939 steps :
4040 - name : Checkout code
@@ -49,15 +49,15 @@ jobs:
4949 tools : cs2pr
5050
5151 - name : Install Composer dependencies - normal
52- if : ${{ matrix.php < 8.3 }}
52+ if : ${{ matrix.php < 8.4 }}
5353 uses : " ramsey/composer-install@v2"
5454 with :
5555 # Bust the cache at least once a month - output format: YYYY-MM.
5656 custom-cache-suffix : $(date -u "+%Y-%m")
5757
5858 # For the PHP "nightly", we need to install with ignore platform reqs as not all dependencies allow it yet.
5959 - name : Install Composer dependencies - with ignore platform
60- if : ${{ matrix.php >= 8.3 }}
60+ if : ${{ matrix.php >= 8.4 }}
6161 uses : " ramsey/composer-install@v2"
6262 with :
6363 composer-options : --ignore-platform-req=php+
9191 # IMPORTANT: test runs shouldn't fail because of PHPCS being incompatible with a PHP version.
9292 #
9393 # The matrix is set up so as not to duplicate the builds which are run for code coverage.
94- php : ['5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1']
94+ php : ['5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
9595 phpcs_version : ['lowest', 'dev-master']
9696 risky : [false]
9797 experimental : [false]
@@ -109,7 +109,7 @@ jobs:
109109 extensions : ' :iconv' # Run with iconv disabled.
110110
111111 # Experimental builds. These are allowed to fail.
112- - php : ' 8.3 '
112+ - php : ' 8.4 '
113113 phpcs_version : ' dev-master'
114114 risky : false
115115 experimental : true
@@ -135,12 +135,12 @@ jobs:
135135 risky : true
136136 experimental : true
137137
138- - php : ' 8.2 '
138+ - php : ' 8.3 '
139139 phpcs_version : ' lowest'
140140 risky : true
141141 experimental : true
142142
143- - php : ' 8.2 '
143+ - php : ' 8.3 '
144144 phpcs_version : ' dev-master'
145145 risky : true
146146 experimental : true
@@ -183,15 +183,15 @@ jobs:
183183 # Install dependencies and handle caching in one go.
184184 # @link https://github.com/marketplace/actions/install-php-dependencies-with-composer
185185 - name : Install Composer dependencies - normal
186- if : ${{ matrix.php < 8.3 }}
186+ if : ${{ matrix.php < 8.4 }}
187187 uses : " ramsey/composer-install@v2"
188188 with :
189189 # Bust the cache at least once a month - output format: YYYY-MM.
190190 custom-cache-suffix : $(date -u "+%Y-%m")
191191
192192 # For PHP "nightly", we need to install with ignore platform reqs as not all dependencies allow it yet.
193193 - name : Install Composer dependencies - with ignore platform
194- if : ${{ matrix.php >= 8.3 }}
194+ if : ${{ matrix.php >= 8.4 }}
195195 uses : " ramsey/composer-install@v2"
196196 with :
197197 composer-options : --ignore-platform-req=php+
@@ -266,9 +266,9 @@ jobs:
266266 strategy :
267267 matrix :
268268 include :
269- - php : ' 8.2 '
269+ - php : ' 8.3 '
270270 phpcs_version : ' dev-master'
271- - php : ' 8.2 '
271+ - php : ' 8.3 '
272272 phpcs_version : ' lowest'
273273 extensions : ' :iconv' # Run one build with iconv disabled.
274274 - php : ' 5.4'
0 commit comments