2121jobs :
2222 # START Basic Checks Job (EPV, code sniffer, images check, etc.)
2323 basic-checks :
24- runs-on : ubuntu-18 .04
24+ runs-on : ubuntu-20 .04
2525 strategy :
2626 matrix :
2727 include :
@@ -33,14 +33,14 @@ jobs:
3333
3434 steps :
3535 - name : Checkout phpBB
36- uses : actions/checkout@v2
36+ uses : actions/checkout@v3
3737 with :
3838 repository : phpbb/phpbb
3939 ref : ${{ env.PHPBB_BRANCH }}
4040 path : phpBB3
4141
4242 - name : Checkout extension
43- uses : actions/checkout@v2
43+ uses : actions/checkout@v3
4444 with :
4545 path : phpBB3/phpBB/ext/${{ env.EXTNAME }}
4646
8989
9090 # START MySQL and MariaDB Job
9191 mysql-tests :
92- runs-on : ubuntu-18 .04
92+ runs-on : ubuntu-20 .04
9393 strategy :
9494 matrix :
9595 include :
@@ -154,14 +154,14 @@ jobs:
154154
155155 steps :
156156 - name : Checkout phpBB
157- uses : actions/checkout@v2
157+ uses : actions/checkout@v3
158158 with :
159159 repository : phpbb/phpbb
160160 ref : ${{ env.PHPBB_BRANCH }}
161161 path : phpBB3
162162
163163 - name : Checkout extension
164- uses : actions/checkout@v2
164+ uses : actions/checkout@v3
165165 with :
166166 path : phpBB3/phpBB/ext/${{ env.EXTNAME }}
167167
@@ -170,7 +170,7 @@ jobs:
170170 MATRIX_DB : ${{ matrix.db }}
171171 run : |
172172 db=$(echo "${MATRIX_DB%%:*}")
173- echo "::set-output name=db:: $db"
173+ echo "db= $db" >> $GITHUB_OUTPUT
174174
175175 - name : Setup PHP
176176 uses : shivammathur/setup-php@v2
@@ -207,7 +207,7 @@ jobs:
207207
208208 # START PostgreSQL Job
209209 postgres-tests :
210- runs-on : ubuntu-18 .04
210+ runs-on : ubuntu-20 .04
211211 strategy :
212212 matrix :
213213 include :
@@ -268,14 +268,14 @@ jobs:
268268
269269 steps :
270270 - name : Checkout phpBB
271- uses : actions/checkout@v2
271+ uses : actions/checkout@v3
272272 with :
273273 repository : phpbb/phpbb
274274 ref : ${{ env.PHPBB_BRANCH }}
275275 path : phpBB3
276276
277277 - name : Checkout extension
278- uses : actions/checkout@v2
278+ uses : actions/checkout@v3
279279 with :
280280 path : phpBB3/phpBB/ext/${{ env.EXTNAME }}
281281
@@ -284,7 +284,7 @@ jobs:
284284 MATRIX_DB : ${{ matrix.db }}
285285 run : |
286286 db=$(echo "${MATRIX_DB%%:*}")
287- echo "::set-output name=db:: $db"
287+ echo "db= $db" >> $GITHUB_OUTPUT
288288
289289 - name : Setup PHP
290290 uses : shivammathur/setup-php@v2
@@ -321,7 +321,7 @@ jobs:
321321
322322 # START Other Tests Job (SQLite 3 and mssql)
323323 other-tests :
324- runs-on : ubuntu-18 .04
324+ runs-on : ubuntu-20 .04
325325 strategy :
326326 matrix :
327327 include :
@@ -363,14 +363,14 @@ jobs:
363363
364364 steps :
365365 - name : Checkout phpBB
366- uses : actions/checkout@v2
366+ uses : actions/checkout@v3
367367 with :
368368 repository : phpbb/phpbb
369369 ref : ${{ env.PHPBB_BRANCH }}
370370 path : phpBB3
371371
372372 - name : Checkout extension
373- uses : actions/checkout@v2
373+ uses : actions/checkout@v3
374374 with :
375375 path : phpBB3/phpBB/ext/${{ env.EXTNAME }}
376376
@@ -384,7 +384,7 @@ jobs:
384384 else
385385 db=$(echo "${MATRIX_DB%%:*}")
386386 fi
387- echo "::set-output name=db:: $db"
387+ echo "db= $db" >> $GITHUB_OUTPUT
388388
389389 - name : Setup PHP
390390 uses : shivammathur/setup-php@v2
0 commit comments