From 6aa5a7d2febb1a974f729c3e45b7b6f2308869a3 Mon Sep 17 00:00:00 2001 From: Irena Rindos Date: Mon, 15 Dec 2025 14:22:04 -0500 Subject: [PATCH] chore: update supported postgres versions (#6297) --- .github/workflows/test-sql.yml | 2 +- globals/globals.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-sql.yml b/.github/workflows/test-sql.yml index 47c6b04a65..b439c984cc 100644 --- a/.github/workflows/test-sql.yml +++ b/.github/workflows/test-sql.yml @@ -15,7 +15,7 @@ jobs: runs-on: ${{ fromJSON(vars.RUNNER) }} strategy: matrix: - postgres-version: [ alpine, 13-alpine, 14-alpine, 15-alpine, 16-alpine, 17-alpine ] + postgres-version: [ alpine,15-alpine, 16-alpine, 17-alpine ] name: SQL Tests ${{ matrix.postgres-version }} steps: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 diff --git a/globals/globals.go b/globals/globals.go index 97cf71c171..6887cd1e11 100644 --- a/globals/globals.go +++ b/globals/globals.go @@ -13,7 +13,7 @@ const ( AnonymousUserId = "u_anon" RecoveryUserId = "u_recovery" - MinimumSupportedPostgresVersion = "12" + MinimumSupportedPostgresVersion = "15" GrantScopeThis = "this" GrantScopeChildren = "children"