From 3ea544555eef1ff8130ccc929d07a4245fff802d Mon Sep 17 00:00:00 2001 From: Johannes Haass Date: Tue, 11 Mar 2025 15:32:33 +0100 Subject: [PATCH] Bump postgres version in gh workflows PostgreSQL v10 and v11 already reached there EOL: https://www.postgresql.org/support/versioning/ Co-authored-by: Johannes Haass --- .github/workflows/unit_tests.yml | 2 +- .github/workflows/unit_tests_backwards_compatibility.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 8f0e4238380..cb1e030f97a 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -43,7 +43,7 @@ jobs: strategy: fail-fast: false matrix: - image: ["postgres:10", "postgres:11", "postgres:16"] + image: ["postgres:13", "postgres:15", "postgres:16"] services: postgres: image: ${{ matrix.image }} diff --git a/.github/workflows/unit_tests_backwards_compatibility.yml b/.github/workflows/unit_tests_backwards_compatibility.yml index 05c4007a9a0..1a51e5cd4e6 100644 --- a/.github/workflows/unit_tests_backwards_compatibility.yml +++ b/.github/workflows/unit_tests_backwards_compatibility.yml @@ -33,7 +33,7 @@ jobs: fail-fast: false max-parallel: 3 matrix: - image: ["postgres:10", "postgres:11", "postgres:16"] + image: ["postgres:13", "postgres:15", "postgres:16"] services: postgres: image: ${{ matrix.image }}