21
21
jobs :
22
22
# START Basic Checks Job (EPV, code sniffer, images check, etc.)
23
23
basic-checks :
24
- runs-on : ubuntu-18 .04
24
+ runs-on : ubuntu-20 .04
25
25
strategy :
26
26
matrix :
27
27
include :
@@ -33,14 +33,14 @@ jobs:
33
33
34
34
steps :
35
35
- name : Checkout phpBB
36
- uses : actions/checkout@v2
36
+ uses : actions/checkout@v3
37
37
with :
38
38
repository : phpbb/phpbb
39
39
ref : ${{ env.PHPBB_BRANCH }}
40
40
path : phpBB3
41
41
42
42
- name : Checkout extension
43
- uses : actions/checkout@v2
43
+ uses : actions/checkout@v3
44
44
with :
45
45
path : phpBB3/phpBB/ext/${{ env.EXTNAME }}
46
46
89
89
90
90
# START MySQL and MariaDB Job
91
91
mysql-tests :
92
- runs-on : ubuntu-18 .04
92
+ runs-on : ubuntu-20 .04
93
93
strategy :
94
94
matrix :
95
95
include :
@@ -154,14 +154,14 @@ jobs:
154
154
155
155
steps :
156
156
- name : Checkout phpBB
157
- uses : actions/checkout@v2
157
+ uses : actions/checkout@v3
158
158
with :
159
159
repository : phpbb/phpbb
160
160
ref : ${{ env.PHPBB_BRANCH }}
161
161
path : phpBB3
162
162
163
163
- name : Checkout extension
164
- uses : actions/checkout@v2
164
+ uses : actions/checkout@v3
165
165
with :
166
166
path : phpBB3/phpBB/ext/${{ env.EXTNAME }}
167
167
@@ -170,7 +170,7 @@ jobs:
170
170
MATRIX_DB : ${{ matrix.db }}
171
171
run : |
172
172
db=$(echo "${MATRIX_DB%%:*}")
173
- echo "::set-output name=db:: $db"
173
+ echo "db= $db" >> $GITHUB_OUTPUT
174
174
175
175
- name : Setup PHP
176
176
uses : shivammathur/setup-php@v2
@@ -207,7 +207,7 @@ jobs:
207
207
208
208
# START PostgreSQL Job
209
209
postgres-tests :
210
- runs-on : ubuntu-18 .04
210
+ runs-on : ubuntu-20 .04
211
211
strategy :
212
212
matrix :
213
213
include :
@@ -268,14 +268,14 @@ jobs:
268
268
269
269
steps :
270
270
- name : Checkout phpBB
271
- uses : actions/checkout@v2
271
+ uses : actions/checkout@v3
272
272
with :
273
273
repository : phpbb/phpbb
274
274
ref : ${{ env.PHPBB_BRANCH }}
275
275
path : phpBB3
276
276
277
277
- name : Checkout extension
278
- uses : actions/checkout@v2
278
+ uses : actions/checkout@v3
279
279
with :
280
280
path : phpBB3/phpBB/ext/${{ env.EXTNAME }}
281
281
@@ -284,7 +284,7 @@ jobs:
284
284
MATRIX_DB : ${{ matrix.db }}
285
285
run : |
286
286
db=$(echo "${MATRIX_DB%%:*}")
287
- echo "::set-output name=db:: $db"
287
+ echo "db= $db" >> $GITHUB_OUTPUT
288
288
289
289
- name : Setup PHP
290
290
uses : shivammathur/setup-php@v2
@@ -321,7 +321,7 @@ jobs:
321
321
322
322
# START Other Tests Job (SQLite 3 and mssql)
323
323
other-tests :
324
- runs-on : ubuntu-18 .04
324
+ runs-on : ubuntu-20 .04
325
325
strategy :
326
326
matrix :
327
327
include :
@@ -363,14 +363,14 @@ jobs:
363
363
364
364
steps :
365
365
- name : Checkout phpBB
366
- uses : actions/checkout@v2
366
+ uses : actions/checkout@v3
367
367
with :
368
368
repository : phpbb/phpbb
369
369
ref : ${{ env.PHPBB_BRANCH }}
370
370
path : phpBB3
371
371
372
372
- name : Checkout extension
373
- uses : actions/checkout@v2
373
+ uses : actions/checkout@v3
374
374
with :
375
375
path : phpBB3/phpBB/ext/${{ env.EXTNAME }}
376
376
@@ -384,7 +384,7 @@ jobs:
384
384
else
385
385
db=$(echo "${MATRIX_DB%%:*}")
386
386
fi
387
- echo "::set-output name=db:: $db"
387
+ echo "db= $db" >> $GITHUB_OUTPUT
388
388
389
389
- name : Setup PHP
390
390
uses : shivammathur/setup-php@v2
0 commit comments