From 60ee27eaf74481dad033e53c3d161fd5af546f0b Mon Sep 17 00:00:00 2001 From: Yuki Fukuma Date: Wed, 29 Apr 2026 13:18:08 +0900 Subject: [PATCH] Upgrade CI database versions - PostgreSQL 11.5 to 18 (PostgreSQL 11 EOL) - MySQL 5.7 to 9.7 (MySQL 5.7 EOL) --- .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 b07e7f0..9a672ba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: services: postgres: - image: postgres:11.5 + image: postgres:18 ports: ["5432:5432"] options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 env: @@ -24,7 +24,7 @@ jobs: POSTGRES_PASSWORD: sequel_activerecord_connection mysql: - image: mysql:5.7 + image: mysql:9.7 ports: ["3306:3306"] options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 env: