Skip to content

Commit 6afbf22

Browse files
committed
update CI and add Drupal 11.3 support
- Update CI runner PHP version from 8.3 to 8.4. - Add official support for Drupal 11.3. - Update CHANGELOG.md with new changes.
1 parent 558b1c1 commit 6afbf22

3 files changed

Lines changed: 18 additions & 20 deletions

File tree

.github/workflows/ci.yml

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,12 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
drupal_version: ['11.0', '11.1']
13+
drupal_version: ['11.0', '11.1', '11.2', '11.3']
1414
module: ['entity_to_text']
15-
include:
16-
- drupal_version: '11.2'
17-
module: 'entity_to_text'
18-
experimental: true
19-
- drupal_version: '11.3'
20-
module: 'entity_to_text'
21-
experimental: true
15+
# include:
16+
# - drupal_version: '11.4'
17+
# module: 'entity_to_text'
18+
# experimental: true
2219

2320
steps:
2421
- uses: actions/checkout@v6
@@ -42,15 +39,12 @@ jobs:
4239
runs-on: ubuntu-latest
4340
strategy:
4441
matrix:
45-
drupal_version: ['11.0', '11.1']
42+
drupal_version: ['11.0', '11.1', '11.2', '11.3']
4643
module: ['entity_to_text']
47-
include:
48-
- drupal_version: '11.2'
49-
module: 'entity_to_text'
50-
experimental: true
51-
- drupal_version: '11.3'
52-
module: 'entity_to_text'
53-
experimental: true
44+
# include:
45+
# - drupal_version: '11.4'
46+
# module: 'entity_to_text'
47+
# experimental: true
5448

5549
steps:
5650
- uses: actions/checkout@v6
@@ -74,7 +68,7 @@ jobs:
7468
runs-on: ubuntu-latest
7569
strategy:
7670
matrix:
77-
drupal_version: ['11.2']
71+
drupal_version: ['11.3']
7872
module: ['entity_to_text']
7973

8074
steps:

.github/workflows/styles.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- name: Setup PHP
1010
uses: shivammathur/setup-php@v2
1111
with:
12-
php-version: '8.3'
12+
php-version: '8.4'
1313
extensions: mbstring, intl, gd, xml, dom, json, fileinfo, curl, zip, iconv
1414
tools: cs2pr, composer:v2
1515
- uses: actions/checkout@v6
@@ -23,7 +23,7 @@ jobs:
2323
- name: Setup PHP
2424
uses: shivammathur/setup-php@v2
2525
with:
26-
php-version: '8.3'
26+
php-version: '8.4'
2727
extensions: mbstring, intl, gd, xml, dom, json, fileinfo, curl, zip, iconv
2828
tools: cs2pr, composer:v2, phpmd
2929
- uses: actions/checkout@v6
@@ -37,7 +37,7 @@ jobs:
3737
- name: Setup PHP
3838
uses: shivammathur/setup-php@v2
3939
with:
40-
php-version: '8.3'
40+
php-version: '8.4'
4141
extensions: mbstring, intl, gd, xml, dom, json, fileinfo, curl, zip, iconv
4242
tools: cs2pr, composer:v2, phpcpd
4343
- uses: actions/checkout@v6

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
### Removed
99
- disable running on Drupal 12 until Paragraph (root dependencies) is compliant
1010

11+
### Added
12+
- update ci PHP runner php 8.3 -> 8.4
13+
- add official support of drupal 11.3
14+
1115
## [1.3.0] - 2025-11-07
1216
### Added
1317
- add official support of drupal 11.2

0 commit comments

Comments
 (0)