Skip to content

Commit 33cb7bc

Browse files
committed
chore: add WordPress 6.9 to test matrix
- Add WordPress 6.9 to the CI test matrix - Exclude PHP 7.4 from WordPress 6.9 tests (per existing pattern) - Update nightly workflow to use WordPress 6.9 as base - Update .env.dist default to WordPress 6.9 Closes #397
1 parent 812c30f commit 33cb7bc

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.env.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@ MYSQL_USER=${DB_USER}
4949
MYSQL_PASSWORD=${DB_PASSWORD}
5050

5151
# Change these to test different versions of WP, WPGraphQL, ACF etc.
52-
WP_VERSION=6.2
52+
WP_VERSION=6.9
5353
PHP_VERSION=8.0
5454
WPGRAPHQL_VERSION=latest

.github/workflows/test-plugin-nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
- name: Create Docker Containers
1717
env:
1818
PHP_VERSION: 8.2
19-
WP_VERSION: 6.8
19+
WP_VERSION: 6.9
2020
working-directory: ./
2121
run: |
2222
docker compose build \
23-
--build-arg WP_VERSION=6.8 \
23+
--build-arg WP_VERSION=6.9 \
2424
--build-arg PHP_VERSION=8.2
2525
docker compose up -d
2626

.github/workflows/test-plugin.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
php: [ '8.2', '7.4' ]
15-
wordpress: [ '6.8', '6.7', '6.6','6.5', '6.4', '6.3', '6.2', '6.1' ]
15+
wordpress: [ '6.9', '6.8', '6.7', '6.6','6.5', '6.4', '6.3', '6.2', '6.1' ]
1616
exclude:
1717
- php: 8.2
1818
wordpress: 6.1
@@ -30,6 +30,8 @@ jobs:
3030
wordpress: 6.7
3131
- php: 7.4
3232
wordpress: 6.8
33+
- php: 7.4
34+
wordpress: 6.9
3335
fail-fast: false
3436
name: WordPress ${{ matrix.wordpress }}, PHP ${{ matrix.php }}
3537
steps:

0 commit comments

Comments
 (0)