From b5633577f08f447cefb2d5d8a7def81c9109ff14 Mon Sep 17 00:00:00 2001 From: Jason Coward Date: Fri, 27 Mar 2026 13:19:15 -0600 Subject: [PATCH] =?UTF-8?q?Upgrade=20CI=20database=20images:=20MySQL=205.6?= =?UTF-8?q?=20=E2=86=92=208.0,=20PostgreSQL=209.6=20=E2=86=92=2016?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit MySQL 5.6 (EOL 2021) is not a valid test target for xPDO 3.2's PHP 8.1 minimum — the combination does not exist in production, and the 5.6 CI job was masking real MySQL 8 regressions (#207, #190). PostgreSQL 9.6 (EOL 2021) receives the same treatment. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0f240c9..583d863 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,7 +52,7 @@ jobs: services: mysql: - image: "mysql:5.6" + image: "mysql:8.0" options: >- --health-cmd "mysqladmin ping --silent" @@ -101,7 +101,7 @@ jobs: services: postgres: - image: postgres:9.6 + image: postgres:16 env: POSTGRES_PASSWORD: postgres