Skip to content

Commit 6177cfd

Browse files
committed
Lock Ubuntu version
1 parent ba9a3f2 commit 6177cfd

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/code-quality.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ jobs:
66

77
lint: #-----------------------------------------------------------------------
88
name: Lint PHP files
9-
runs-on: ubuntu-latest
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
php: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0']
13+
runs-on: ubuntu-20.04
1014
steps:
1115
- name: Check out source code
1216
uses: actions/checkout@v2
@@ -55,7 +59,7 @@ jobs:
5559

5660
phpcs: #----------------------------------------------------------------------
5761
name: PHPCS
58-
runs-on: ubuntu-latest
62+
runs-on: ubuntu-20.04
5963

6064
steps:
6165
- name: Check out source code

.github/workflows/testing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
php: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0']
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-20.04
1414

1515
steps:
1616
- name: Check out source code
@@ -99,7 +99,7 @@ jobs:
9999
wp: '3.7'
100100
mysql: '5.6'
101101
test: "composer behat || composer behat-rerun"
102-
runs-on: ubuntu-latest
102+
runs-on: ubuntu-20.04
103103

104104
services:
105105
mysql:

0 commit comments

Comments
 (0)