From 9268e14f55e35fcb54aca3fc888742faf49e8390 Mon Sep 17 00:00:00 2001 From: Sven Klemm Date: Thu, 9 Nov 2023 16:40:20 +0100 Subject: [PATCH] Bump PG versions used in CI Use newly released 13.13, 14.10, 15.5 and 16.1 in CI. --- .github/ci_settings.py | 8 ++++---- .github/workflows/update-test.yaml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/ci_settings.py b/.github/ci_settings.py index 4dfbf0c15ea..94a77f4caf6 100644 --- a/.github/ci_settings.py +++ b/.github/ci_settings.py @@ -11,19 +11,19 @@ # ABI_MIN is the minimum postgres version required when the extension was build against LATEST PG13_EARLIEST = "13.2" -PG13_LATEST = "13.12" +PG13_LATEST = "13.13" PG13_ABI_MIN = "13.5" PG14_EARLIEST = "14.0" -PG14_LATEST = "14.9" +PG14_LATEST = "14.10" PG14_ABI_MIN = "14.0" PG15_EARLIEST = "15.0" -PG15_LATEST = "15.4" +PG15_LATEST = "15.5" PG15_ABI_MIN = "15.0" PG16_EARLIEST = "16.0" -PG16_LATEST = "16.0" +PG16_LATEST = "16.1" PG16_ABI_MIN = "16.0" PG_LATEST = [PG13_LATEST, PG14_LATEST, PG15_LATEST, PG16_LATEST] diff --git a/.github/workflows/update-test.yaml b/.github/workflows/update-test.yaml index 677582b6fc0..5dc6b5c378b 100644 --- a/.github/workflows/update-test.yaml +++ b/.github/workflows/update-test.yaml @@ -26,7 +26,7 @@ jobs: pg: ${{ fromJson(needs.config.outputs.pg_latest) }} # Should be removed after the first version for PG 16 is released exclude: - - pg: "16.0" + - pg: "16.1" fail-fast: false env: PG_VERSION: ${{ matrix.pg }} @@ -61,7 +61,7 @@ jobs: pg: ${{ fromJson(needs.config.outputs.pg_latest) }} # Should be removed after the first version for PG 16 is released exclude: - - pg: "16.0" + - pg: "16.1" fail-fast: false env: PG_VERSION: ${{ matrix.pg }}