From 938ed9484c0d4e573cbdf6b6a83524aebcdaec6e Mon Sep 17 00:00:00 2001 From: jrfnl Date: Mon, 11 Nov 2024 01:59:05 +0100 Subject: [PATCH] GH Actions/tests: fix up the matrix PR 380 dropped support for WP < 6.4, but the integration test matrix had not been updated to reflect this change. Fixed now. --- .github/workflows/test.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 93b1a5a8..cd604387 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -128,7 +128,7 @@ jobs: matrix: include: - php_version: "7.2" - wp_version: "6.2" + wp_version: "6.5" multisite: true coverage: true @@ -143,7 +143,7 @@ jobs: coverage: false - php_version: "8.0" - wp_version: "6.2" + wp_version: "6.6" multisite: false coverage: false @@ -153,13 +153,12 @@ jobs: coverage: false - php_version: "8.2" - wp_version: "6.3" + wp_version: "6.5" multisite: true coverage: false - # WP 6.4 is the earliest version which supports PHP 8.3. - php_version: '8.3' - wp_version: '6.4' + wp_version: '6.6' multisite: true coverage: true