Skip to content

Commit ef1745b

Browse files
committed
Update to Github workflow versions
1 parent 3c1487a commit ef1745b

3 files changed

Lines changed: 14 additions & 29 deletions

File tree

.github/workflows/coding-standards.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@ on: ["pull_request"]
55
jobs:
66
coding-standards:
77
name: "Coding Standards"
8-
runs-on: "ubuntu-20.04"
8+
runs-on: "ubuntu-latest"
99

1010
strategy:
1111
matrix:
1212
php-version:
1313
- "7.4"
14+
- "8.0"
15+
- "8.5"
1416

1517
steps:
1618
- name: "Checkout"

.github/workflows/continuous-integration.yml

Lines changed: 7 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -8,47 +8,26 @@ env:
88
jobs:
99
phpunit:
1010
name: "PHPUnit"
11-
runs-on: "ubuntu-20.04"
11+
runs-on: "ubuntu-latest"
1212

1313
strategy:
1414
matrix:
1515
php-version:
1616
- "7.4"
1717
- "8.0"
1818
- "8.1"
19+
- "8.2"
20+
- "8.3"
21+
- "8.4"
22+
- "8.5"
1923
deps:
2024
- "normal"
25+
- "low"
26+
- "dev"
2127
symfony-require:
2228
- ""
2329
symfony-deprecations-helper:
2430
- ""
25-
include:
26-
- php-version: "7.4"
27-
deps: "normal"
28-
29-
- php-version: "7.4"
30-
deps: "low"
31-
32-
- php-version: "7.4"
33-
deps: "dev"
34-
35-
- php-version: "8.0"
36-
deps: "normal"
37-
38-
- php-version: "8.0"
39-
deps: "low"
40-
41-
- php-version: "8.0"
42-
deps: "dev"
43-
44-
- php-version: "8.1"
45-
deps: "normal"
46-
47-
- php-version: "8.1"
48-
deps: "low"
49-
50-
- php-version: "8.1"
51-
deps: "dev"
5231

5332
steps:
5433
- name: "Checkout"

.github/workflows/static-analysis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ jobs:
1313
- "7.4"
1414
- "8.0"
1515
- "8.1"
16+
- "8.2"
17+
- "8.3"
18+
- "8.4"
19+
- "8.5"
1620

1721
steps:
1822
- name: "Checkout code"

0 commit comments

Comments
 (0)