From de24f98e5fcb0323e9d733cff5cf56bd7bd87803 Mon Sep 17 00:00:00 2001 From: sect Date: Fri, 20 Feb 2026 14:10:14 +0900 Subject: [PATCH] ci(phpunit): fix mariadb version and remove wp-mysqli drop-in - Replace mariadb:10.11 with mariadb:lts in phpunit workflow - Remove deprecated wp-mysqli db.php drop-in download from install-wp-tests.sh --- .github/workflows/phpunit.yml | 2 +- bin/install-wp-tests.sh | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index 6645f63..bf37c5e 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -21,7 +21,7 @@ jobs: services: mariadb: - image: mariadb:10.11 + image: mariadb:lts env: MYSQL_ALLOW_EMPTY_PASSWORD: yes ports: diff --git a/bin/install-wp-tests.sh b/bin/install-wp-tests.sh index 5ceac4b..87d9154 100755 --- a/bin/install-wp-tests.sh +++ b/bin/install-wp-tests.sh @@ -92,7 +92,6 @@ install_wp() { tar --strip-components=1 -zxmf $TMPDIR/wordpress.tar.gz -C $WP_CORE_DIR fi - download https://raw.github.com/markoheijnen/wp-mysqli/master/db.php $WP_CORE_DIR/wp-content/db.php } install_test_suite() {