@@ -10,12 +10,12 @@ jobs:
10
10
name : Coding Standards
11
11
steps :
12
12
- name : Checkout
13
- uses : actions/checkout@v3
13
+ uses : actions/checkout@v4
14
14
15
15
- name : Setup PHP
16
16
uses : shivammathur/setup-php@v2
17
17
with :
18
- php-version : ' 8.2 '
18
+ php-version : ' 8.3 '
19
19
tools : php-cs-fixer, cs2pr
20
20
21
21
- name : PHP Coding Standards Fixer
@@ -26,12 +26,12 @@ jobs:
26
26
name : Static Analysis
27
27
steps :
28
28
- name : Checkout
29
- uses : actions/checkout@v2
29
+ uses : actions/checkout@v4
30
30
31
31
- name : Setup PHP
32
32
uses : shivammathur/setup-php@v2
33
33
with :
34
- php-version : ' 8.2 '
34
+ php-version : ' 8.3 '
35
35
tools : phpstan,flex
36
36
extensions : zip
37
37
@@ -61,12 +61,12 @@ jobs:
61
61
runs-on : ubuntu-latest
62
62
strategy :
63
63
matrix :
64
- php-versions : ['8.0', '8.1', '8.2']
64
+ php-versions : ['8.0', '8.1', '8.2', '8.3' ]
65
65
fail-fast : false
66
66
name : PHP ${{ matrix.php-versions }} Test on ubuntu-latest
67
67
steps :
68
68
- name : Checkout
69
- uses : actions/checkout@v3
69
+ uses : actions/checkout@v4
70
70
71
71
- name : Setup PHP
72
72
uses : shivammathur/setup-php@v2
@@ -95,12 +95,12 @@ jobs:
95
95
runs-on : ubuntu-latest
96
96
strategy :
97
97
matrix :
98
- php-versions : ['8.0', '8.1', '8.2']
98
+ php-versions : ['8.0', '8.1', '8.2', '8.3' ]
99
99
fail-fast : false
100
100
name : PHP ${{ matrix.php-versions }} Test dev dependencies on ubuntu-latest
101
101
steps :
102
102
- name : Checkout
103
- uses : actions/checkout@v3
103
+ uses : actions/checkout@v4
104
104
105
105
- name : Setup PHP
106
106
uses : shivammathur/setup-php@v2
@@ -130,23 +130,23 @@ jobs:
130
130
131
131
phpunit-lowest :
132
132
runs-on : ubuntu-latest
133
- name : PHP 8.2 (lowest) Test on ubuntu-latest
133
+ name : PHP 8.3 (lowest) Test on ubuntu-latest
134
134
steps :
135
135
- name : Checkout
136
- uses : actions/checkout@v3
136
+ uses : actions/checkout@v4
137
137
138
138
- name : Setup PHP
139
139
uses : shivammathur/setup-php@v2
140
140
with :
141
- php-version : ' 8.2 '
141
+ php-version : ' 8.3 '
142
142
extensions : zip
143
143
144
144
- name : Get composer cache directory
145
145
id : composercache
146
146
run : echo "::set-output name=dir::$(composer config cache-files-dir)"
147
147
148
148
- name : Cache dependencies
149
- uses : actions/cache@v2
149
+ uses : actions/cache@v3
150
150
with :
151
151
path : ${{ steps.composercache.outputs.dir }}
152
152
key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
@@ -162,18 +162,18 @@ jobs:
162
162
163
163
phpunit-windows :
164
164
runs-on : windows-latest
165
- name : PHP 8.2 Test on windows-latest
165
+ name : PHP 8.3 Test on windows-latest
166
166
env :
167
167
PANTHER_FIREFOX_BINARY : ' C:\Program Files\Mozilla Firefox\firefox.exe'
168
168
SKIP_FIREFOX : 1
169
169
steps :
170
170
- name : Checkout
171
- uses : actions/checkout@v3
171
+ uses : actions/checkout@v4
172
172
173
173
- name : Setup PHP
174
174
uses : shivammathur/setup-php@v2
175
175
with :
176
- php-version : ' 8.2 '
176
+ php-version : ' 8.3 '
177
177
extensions : zip
178
178
179
179
- name : Get composer cache directory
@@ -195,15 +195,15 @@ jobs:
195
195
196
196
phpunit-macos :
197
197
runs-on : macos-latest
198
- name : PHP 8.2 Test on macos-latest
198
+ name : PHP 8.3 Test on macos-latest
199
199
steps :
200
200
- name : Checkout
201
- uses : actions/checkout@v3
201
+ uses : actions/checkout@v4
202
202
203
203
- name : Setup PHP
204
204
uses : shivammathur/setup-php@v2
205
205
with :
206
- php-version : ' 8.2 '
206
+ php-version : ' 8.3 '
207
207
extensions : zip
208
208
209
209
- name : Get composer cache directory
@@ -227,12 +227,12 @@ jobs:
227
227
runs-on : ubuntu-latest
228
228
strategy :
229
229
matrix :
230
- php-versions : [ '8.1', '8.2' ]
230
+ php-versions : [ '8.1', '8.2', '8.3' ]
231
231
fail-fast : false
232
232
name : PHP ${{ matrix.php-versions }} (phpunit 10) Test on ubuntu-latest
233
233
steps :
234
234
- name : Checkout
235
- uses : actions/checkout@v3
235
+ uses : actions/checkout@v4
236
236
237
237
- name : Setup PHP
238
238
uses : shivammathur/setup-php@v2
0 commit comments