From 9077a7ed6178b6de27a28f6536f5bc063e09c21f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20=C5=A0kr=C3=A1=C5=A1ek?= Date: Fri, 8 Dec 2023 23:02:03 +0100 Subject: [PATCH] build with Postgres16 (#226) --- .github/workflows/build.yml | 8 ++++---- tests/databases.github.ini | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c67fc7ec..4be118e1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -94,8 +94,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 @@ -107,8 +107,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 1274d89c..f2fc6308 100644 --- a/tests/databases.github.ini +++ b/tests/databases.github.ini @@ -46,7 +46,7 @@ username = root password = root port = 3308 -[pgsql 9.6] +[pgsql 13] driver = pgsql host = "127.0.0.1" database = nextras_dbal_test @@ -54,7 +54,7 @@ username = postgres password = postgres port = 5432 -[pgsql 9.6pdo] +[pgsql 13pdo] driver = pdo_pgsql host = "127.0.0.1" database = nextras_dbal_test @@ -62,7 +62,7 @@ username = postgres password = postgres port = 5432 -[pgsql 13] +[pgsql 16] driver = pgsql host = "127.0.0.1" database = nextras_dbal_test @@ -70,7 +70,7 @@ username = postgres password = postgres port = 5433 -[pgsql 13pdo] +[pgsql 16pdo] driver = pdo_pgsql host = "127.0.0.1" database = nextras_dbal_test