@@ -10,12 +10,12 @@ jobs:
10
10
name : Coding Standards
11
11
steps :
12
12
- name : Checkout
13
- uses : actions/checkout@v2
13
+ uses : actions/checkout@v3
14
14
15
15
- name : Setup PHP
16
16
uses : shivammathur/setup-php@v2
17
17
with :
18
- php-version : ' 8.0 '
18
+ php-version : ' 8.2 '
19
19
tools : php-cs-fixer, cs2pr
20
20
21
21
- name : PHP Coding Standards Fixer
@@ -31,15 +31,15 @@ jobs:
31
31
- name : Setup PHP
32
32
uses : shivammathur/setup-php@v2
33
33
with :
34
- php-version : ' 8.0 '
34
+ php-version : ' 8.2 '
35
35
tools : phpstan
36
36
37
37
- name : Get composer cache directory
38
38
id : composercache
39
39
run : echo "::set-output name=dir::$(composer config cache-files-dir)"
40
40
41
41
- name : Cache dependencies
42
- uses : actions/cache@v2
42
+ uses : actions/cache@v3
43
43
with :
44
44
path : ${{ steps.composercache.outputs.dir }}
45
45
key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
@@ -58,12 +58,12 @@ jobs:
58
58
runs-on : ubuntu-latest
59
59
strategy :
60
60
matrix :
61
- php-versions : ['8.0']
61
+ php-versions : ['8.0', '8.1', '8.2' ]
62
62
fail-fast : false
63
63
name : PHP ${{ matrix.php-versions }} Test on ubuntu-latest
64
64
steps :
65
65
- name : Checkout
66
- uses : actions/checkout@v2
66
+ uses : actions/checkout@v3
67
67
68
68
- name : Setup PHP
69
69
uses : shivammathur/setup-php@v2
76
76
run : echo "::set-output name=dir::$(composer config cache-files-dir)"
77
77
78
78
- name : Cache dependencies
79
- uses : actions/cache@v2
79
+ uses : actions/cache@v3
80
80
with :
81
81
path : ${{ steps.composercache.outputs.dir }}
82
82
key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
@@ -92,12 +92,12 @@ jobs:
92
92
runs-on : ubuntu-latest
93
93
strategy :
94
94
matrix :
95
- php-versions : ['8.0']
95
+ php-versions : ['8.0', '8.1', '8.2' ]
96
96
fail-fast : false
97
97
name : PHP ${{ matrix.php-versions }} Test dev dependencies on ubuntu-latest
98
98
steps :
99
99
- name : Checkout
100
- uses : actions/checkout@v2
100
+ uses : actions/checkout@v3
101
101
102
102
- name : Setup PHP
103
103
uses : shivammathur/setup-php@v2
@@ -110,7 +110,7 @@ jobs:
110
110
run : echo "::set-output name=dir::$(composer config cache-files-dir)"
111
111
112
112
- name : Cache dependencies
113
- uses : actions/cache@v2
113
+ uses : actions/cache@v3
114
114
with :
115
115
path : ${{ steps.composercache.outputs.dir }}
116
116
key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
@@ -127,15 +127,15 @@ jobs:
127
127
128
128
phpunit-lowest :
129
129
runs-on : ubuntu-latest
130
- name : PHP 8.0 (lowest) Test on ubuntu-latest
130
+ name : PHP 8.2 (lowest) Test on ubuntu-latest
131
131
steps :
132
132
- name : Checkout
133
- uses : actions/checkout@v2
133
+ uses : actions/checkout@v3
134
134
135
135
- name : Setup PHP
136
136
uses : shivammathur/setup-php@v2
137
137
with :
138
- php-version : ' 8.0 '
138
+ php-version : ' 8.2 '
139
139
140
140
- name : Get composer cache directory
141
141
id : composercache
@@ -158,25 +158,25 @@ jobs:
158
158
159
159
phpunit-windows :
160
160
runs-on : windows-latest
161
- name : PHP 8.0 Test on windows-latest
161
+ name : PHP 8.2 Test on windows-latest
162
162
env :
163
163
PANTHER_FIREFOX_BINARY : ' C:\Program Files\Mozilla Firefox\firefox.exe'
164
164
SKIP_FIREFOX : 1
165
165
steps :
166
166
- name : Checkout
167
- uses : actions/checkout@v2
167
+ uses : actions/checkout@v3
168
168
169
169
- name : Setup PHP
170
170
uses : shivammathur/setup-php@v2
171
171
with :
172
- php-version : ' 8.0 '
172
+ php-version : ' 8.2 '
173
173
174
174
- name : Get composer cache directory
175
175
id : composercache
176
176
run : echo "::set-output name=dir::$(composer config cache-files-dir)"
177
177
178
178
- name : Cache dependencies
179
- uses : actions/cache@v2
179
+ uses : actions/cache@v3
180
180
with :
181
181
path : ${{ steps.composercache.outputs.dir }}
182
182
key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
@@ -190,22 +190,22 @@ jobs:
190
190
191
191
phpunit-macos :
192
192
runs-on : macos-latest
193
- name : PHP 8.0 Test on macos-latest
193
+ name : PHP 8.2 Test on macos-latest
194
194
steps :
195
195
- name : Checkout
196
- uses : actions/checkout@v2
196
+ uses : actions/checkout@v3
197
197
198
198
- name : Setup PHP
199
199
uses : shivammathur/setup-php@v2
200
200
with :
201
- php-version : ' 8.0 '
201
+ php-version : ' 8.2 '
202
202
203
203
- name : Get composer cache directory
204
204
id : composercache
205
205
run : echo "::set-output name=dir::$(composer config cache-files-dir)"
206
206
207
207
- name : Cache dependencies
208
- uses : actions/cache@v2
208
+ uses : actions/cache@v3
209
209
with :
210
210
path : ${{ steps.composercache.outputs.dir }}
211
211
key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
@@ -221,12 +221,12 @@ jobs:
221
221
runs-on : ubuntu-latest
222
222
strategy :
223
223
matrix :
224
- php-versions : [ '8.1' ]
224
+ php-versions : [ '8.1', '8.2' ]
225
225
fail-fast : false
226
226
name : PHP ${{ matrix.php-versions }} (phpunit 10) Test on ubuntu-latest
227
227
steps :
228
228
- name : Checkout
229
- uses : actions/checkout@v2
229
+ uses : actions/checkout@v3
230
230
231
231
- name : Setup PHP
232
232
uses : shivammathur/setup-php@v2
@@ -239,7 +239,7 @@ jobs:
239
239
run : echo "::set-output name=dir::$(composer config cache-files-dir)"
240
240
241
241
- name : Cache dependencies
242
- uses : actions/cache@v2
242
+ uses : actions/cache@v3
243
243
with :
244
244
path : ${{ steps.composercache.outputs.dir }}
245
245
key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
0 commit comments