From 5ff73503d950489a68ac1f7ae4c41f4845d1067c Mon Sep 17 00:00:00 2001 From: Nikita Shilnikov Date: Mon, 6 May 2024 15:42:02 +0200 Subject: [PATCH] Update DB versions --- .github/workflows/ci.yml | 4 ++-- docker-compose.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bae7306f..cf427fb5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,7 +44,7 @@ jobs: SEQUEL_FROM_MAIN: "${{matrix.sequel_from_main}}" services: mysql: - image: mysql:5.7 + image: mysql:8.4 ports: - 3306:3306 env: @@ -53,7 +53,7 @@ jobs: MYSQL_ROOT_PASSWORD: password MYSQL_DATABASE: rom-sql postgres: - image: postgres:14 + image: postgres:16 ports: - 5432:5432 env: diff --git a/docker-compose.yml b/docker-compose.yml index 4244e258..89e646fc 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -13,13 +13,13 @@ services: links: [mysql, postgres] mysql: - image: mysql:5.7 + image: mysql:8.4 ports: - "3307:3306" env_file: .env postgres: - image: postgres:14 + image: postgres:16 ports: - "5433:5432" env_file: .env