From c3a6f29d5f09de3ad0b29253a1569433dd87b6b2 Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Thu, 21 May 2026 10:25:33 +0200 Subject: [PATCH] Update test matrix after WordPress 7.0 release WordPress 7.0 requires PHP 7.4+, so we need to update the matrix here accordingly. The individual repos still test against PHP 7.3 and 7.2 (the current WP-CLI minimum requirement) --- .github/workflows/testing.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 14128761..68198e0b 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - php: ['7.2', '8.5'] + php: ['7.4', '8.5'] wp: ['latest', 'trunk'] dbtype: ['mysql', 'sqlite'] object_cache: ['none', 'sqlite'] @@ -63,14 +63,14 @@ jobs: - dbtype: sqlite wp: trunk - dbtype: sqlite - php: '7.2' + php: '7.4' # Object cache runs only with WP latest - object_cache: sqlite wp: trunk # A1: object_cache=sqlite only on PHP 8.5 - - php: '7.2' + - php: '7.4' object_cache: sqlite # Phar usage match defaults @@ -80,7 +80,7 @@ jobs: wp: latest # Limit ancient php on trunk - - php: '7.2' + - php: '7.4' wp: trunk uses: ./.github/workflows/reusable-testing.yml