From ed334490c328cf0773f52328feaea2ad57196253 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Van=C4=9Bk?= Date: Sat, 28 Feb 2026 21:58:58 +0100 Subject: [PATCH 1/2] upgrade to the latest postgres versions --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 08e31fd..3dbf2f7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,7 @@ jobs: strategy: fail-fast: false matrix: - postgres: ["18.2", "17.8", "16.12", "15.16", "14.21"] + postgres: ["18.3", "17.9", "16.13", "15.17", "14.22"] steps: - name: Checkout project uses: actions/checkout@v3 @@ -34,7 +34,7 @@ jobs: strategy: fail-fast: false matrix: - postgres: ["18.2", "17.8", "16.12", "15.16", "14.21"] + postgres: ["18.3", "17.9", "16.13", "15.17", "14.22"] steps: - name: Checkout project uses: actions/checkout@v3 @@ -56,7 +56,7 @@ jobs: strategy: fail-fast: false matrix: - postgres: ["18.2", "17.8", "16.12", "15.16", "14.21"] + postgres: ["18.3", "17.9", "16.13", "15.17", "14.22"] steps: - name: Checkout project uses: actions/checkout@v3 @@ -78,7 +78,7 @@ jobs: strategy: fail-fast: false matrix: - postgres: ["18.2", "17.8", "16.12", "15.16", "14.21"] + postgres: ["18.3", "17.9", "16.13", "15.17", "14.22"] steps: - name: Checkout project uses: actions/checkout@v3 From 78590722bf1ef31308cfb4c6ef8fec48c2f857be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Van=C4=9Bk?= Date: Sat, 28 Feb 2026 22:20:50 +0100 Subject: [PATCH 2/2] fix psql not found on macOS by adding brew bin to PATH --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3dbf2f7..bffe8b2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -69,6 +69,7 @@ jobs: run: | brew update brew install postgresql + echo "$(brew --prefix postgresql)/bin" >> $GITHUB_PATH - name: Test PostgreSQL bundle run: ./gradlew :repacked-platforms:testAmd64DarwinJar -Pversion=${{ matrix.postgres }}-TEST -PpgVersion=${{ matrix.postgres }} timeout-minutes: 10