From 38d15df97f46add215f75b736b6177f7832f979e Mon Sep 17 00:00:00 2001 From: silverwind Date: Wed, 21 May 2025 17:42:08 +0200 Subject: [PATCH 1/2] Run integration tests against postgres 16 postgres 12 is end of life since 6 months. 13 and above are still supported but I think it's overall better if we test a more recent version of postgres. --- .github/workflows/pull-db-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-db-tests.yml b/.github/workflows/pull-db-tests.yml index a3fd8ca621e37..fb5d753f9d01c 100644 --- a/.github/workflows/pull-db-tests.yml +++ b/.github/workflows/pull-db-tests.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest services: pgsql: - image: postgres:12 + image: postgres:16 env: POSTGRES_DB: test POSTGRES_PASSWORD: postgres From 8461592b65dc01f80c4c1e055216f63baa6dd10d Mon Sep 17 00:00:00 2001 From: silverwind Date: Thu, 22 May 2025 12:38:07 +0200 Subject: [PATCH 2/2] Update .github/workflows/pull-db-tests.yml --- .github/workflows/pull-db-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-db-tests.yml b/.github/workflows/pull-db-tests.yml index fb5d753f9d01c..55c2d2bf5e30e 100644 --- a/.github/workflows/pull-db-tests.yml +++ b/.github/workflows/pull-db-tests.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest services: pgsql: - image: postgres:16 + image: postgres:14 env: POSTGRES_DB: test POSTGRES_PASSWORD: postgres