Skip to content

Commit 4182c81

Browse files
committed
👷 Use PHP8 by default for CI
1 parent 5f92b37 commit 4182c81

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
php-version:
17-
- "7.4"
17+
- "8.0"
1818

1919
steps:
2020
- name: "Checkout"
@@ -50,7 +50,7 @@ jobs:
5050
strategy:
5151
matrix:
5252
php-version:
53-
- "7.4"
53+
- "8.0"
5454

5555
steps:
5656
- name: "Checkout"
@@ -83,7 +83,7 @@ jobs:
8383
strategy:
8484
matrix:
8585
php-version:
86-
- "7.4"
86+
- "8.0"
8787

8888
services:
8989
mysql:
@@ -230,7 +230,7 @@ jobs:
230230
strategy:
231231
matrix:
232232
php-version:
233-
- "7.4"
233+
- "8.0"
234234

235235
services:
236236
mysql:
@@ -276,7 +276,7 @@ jobs:
276276
strategy:
277277
matrix:
278278
php-version:
279-
- "7.4"
279+
- "8.0"
280280

281281
services:
282282
postgres:
@@ -379,11 +379,14 @@ jobs:
379379
phpunit-oci8:
380380
name: "PHPUnit on OCI8"
381381
runs-on: "ubuntu-latest"
382+
# disabled due to issue on doctrine/dbal with Oracle, see https://github.com/doctrine/dbal/issues/6764#issuecomment-2781153676
383+
# TODO: re-enable after doctrine/dbal 4 (or 5) upgrade
384+
if: false
382385

383386
strategy:
384387
matrix:
385388
php-version:
386-
- "7.4"
389+
- "8.0"
387390

388391
services:
389392
oracle:

.scrutinizer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
build:
22
environment:
33
php:
4-
version: 7.4
4+
version: 8.0
55
nodes:
66
analysis:
77
project_setup:

0 commit comments

Comments
 (0)