From 87796613861b824da6651bc38d61045b6bf521a9 Mon Sep 17 00:00:00 2001 From: Jan Skrasek Date: Fri, 8 Dec 2023 23:49:55 +0100 Subject: [PATCH] build with Postgres 16 --- .github/workflows/build.yml | 8 ++++---- tests/databases.github.ini | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 90496bdb..93da6f51 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -99,8 +99,8 @@ jobs: --health-start-period 10s --health-timeout 5s --health-retries 10 - postgres96: - image: postgres:9.6 + postgres13: + image: postgres:13 env: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres @@ -112,8 +112,8 @@ jobs: --health-interval 10s --health-timeout 5s --health-retries 5 - postgres13: - image: postgres:13 + postgres16: + image: postgres:16 env: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres diff --git a/tests/databases.github.ini b/tests/databases.github.ini index 1d8f71ec..33a0fedb 100644 --- a/tests/databases.github.ini +++ b/tests/databases.github.ini @@ -24,7 +24,7 @@ username = root password = root port = 3308 -[pgsql 9.6] +[pgsql 13] driver = pgsql host = "127.0.0.1" database = nextras_orm_test @@ -32,7 +32,7 @@ username = postgres password = postgres port = 5432 -[pgsql 13] +[pgsql 16] driver = pgsql host = "127.0.0.1" database = nextras_orm_test