@@ -30,11 +30,11 @@ jobs:
30
30
31
31
strategy :
32
32
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 ']
34
34
35
35
name : " Lint: PHP ${{ matrix.php }}"
36
36
37
- continue-on-error : ${{ matrix.php == '8.3 ' }}
37
+ continue-on-error : ${{ matrix.php == '8.4 ' }}
38
38
39
39
steps :
40
40
- name : Checkout code
@@ -49,15 +49,15 @@ jobs:
49
49
tools : cs2pr
50
50
51
51
- name : Install Composer dependencies - normal
52
- if : ${{ matrix.php < 8.3 }}
52
+ if : ${{ matrix.php < 8.4 }}
53
53
uses : " ramsey/composer-install@v2"
54
54
with :
55
55
# Bust the cache at least once a month - output format: YYYY-MM.
56
56
custom-cache-suffix : $(date -u "+%Y-%m")
57
57
58
58
# For the PHP "nightly", we need to install with ignore platform reqs as not all dependencies allow it yet.
59
59
- name : Install Composer dependencies - with ignore platform
60
- if : ${{ matrix.php >= 8.3 }}
60
+ if : ${{ matrix.php >= 8.4 }}
61
61
uses : " ramsey/composer-install@v2"
62
62
with :
63
63
composer-options : --ignore-platform-req=php+
91
91
# IMPORTANT: test runs shouldn't fail because of PHPCS being incompatible with a PHP version.
92
92
#
93
93
# 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' ]
95
95
phpcs_version : ['lowest', 'dev-master']
96
96
risky : [false]
97
97
experimental : [false]
@@ -109,7 +109,7 @@ jobs:
109
109
extensions : ' :iconv' # Run with iconv disabled.
110
110
111
111
# Experimental builds. These are allowed to fail.
112
- - php : ' 8.3 '
112
+ - php : ' 8.4 '
113
113
phpcs_version : ' dev-master'
114
114
risky : false
115
115
experimental : true
@@ -135,12 +135,12 @@ jobs:
135
135
risky : true
136
136
experimental : true
137
137
138
- - php : ' 8.2 '
138
+ - php : ' 8.3 '
139
139
phpcs_version : ' lowest'
140
140
risky : true
141
141
experimental : true
142
142
143
- - php : ' 8.2 '
143
+ - php : ' 8.3 '
144
144
phpcs_version : ' dev-master'
145
145
risky : true
146
146
experimental : true
@@ -183,15 +183,15 @@ jobs:
183
183
# Install dependencies and handle caching in one go.
184
184
# @link https://github.com/marketplace/actions/install-php-dependencies-with-composer
185
185
- name : Install Composer dependencies - normal
186
- if : ${{ matrix.php < 8.3 }}
186
+ if : ${{ matrix.php < 8.4 }}
187
187
uses : " ramsey/composer-install@v2"
188
188
with :
189
189
# Bust the cache at least once a month - output format: YYYY-MM.
190
190
custom-cache-suffix : $(date -u "+%Y-%m")
191
191
192
192
# For PHP "nightly", we need to install with ignore platform reqs as not all dependencies allow it yet.
193
193
- name : Install Composer dependencies - with ignore platform
194
- if : ${{ matrix.php >= 8.3 }}
194
+ if : ${{ matrix.php >= 8.4 }}
195
195
uses : " ramsey/composer-install@v2"
196
196
with :
197
197
composer-options : --ignore-platform-req=php+
@@ -266,9 +266,9 @@ jobs:
266
266
strategy :
267
267
matrix :
268
268
include :
269
- - php : ' 8.2 '
269
+ - php : ' 8.3 '
270
270
phpcs_version : ' dev-master'
271
- - php : ' 8.2 '
271
+ - php : ' 8.3 '
272
272
phpcs_version : ' lowest'
273
273
extensions : ' :iconv' # Run one build with iconv disabled.
274
274
- php : ' 5.4'
0 commit comments