From 2de15b7a9e1da6567e8fd1782eea056a02fd29c3 Mon Sep 17 00:00:00 2001 From: PhMemmel <65113153+PhMemmel@users.noreply.github.com> Date: Sat, 28 Dec 2024 17:26:00 +0100 Subject: [PATCH] Bump postgres and mariadb version to fit minimum requirements --- .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 8586e8e..50c3f29 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: services: postgres: - image: postgres:13 + image: postgres:17 env: POSTGRES_USER: 'postgres' POSTGRES_HOST_AUTH_METHOD: 'trust' @@ -17,7 +17,7 @@ jobs: options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3 mariadb: - image: mariadb:10 + image: mariadb:10.11 env: MYSQL_USER: 'root' MYSQL_ALLOW_EMPTY_PASSWORD: "true"