From 5be019417a3c56c1c4770f689c4a65b43b3112f8 Mon Sep 17 00:00:00 2001 From: theirix Date: Fri, 27 Sep 2024 10:06:16 +0100 Subject: [PATCH] Support PostgreSQL 17 --- .github/workflows/test-snapshot.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-snapshot.yml b/.github/workflows/test-snapshot.yml index 1f8f557..a23bc81 100644 --- a/.github/workflows/test-snapshot.yml +++ b/.github/workflows/test-snapshot.yml @@ -7,7 +7,7 @@ on: branches: [ "master" ] env: - PG_SNAPSHOT_VERSION: "17" + PG_SNAPSHOT_VERSION: "18" jobs: build: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 166abce..74a745a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - pg-version: [ "9.1", "9.5", "9.6", "10", "11", "12", "13", "14", "15", "16" ] + pg-version: [ "9.1", "9.5", "9.6", "10", "11", "12", "13", "14", "15", "16", "17" ] steps: - name: Checkout