From 113ed6fa80330a761977b3fc830572c731d0c4e7 Mon Sep 17 00:00:00 2001 From: Chongyi Zheng Date: Sun, 31 May 2026 02:13:55 -0500 Subject: [PATCH 1/3] Test against Postgres 18 --- .github/workflows/pull-db-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-db-tests.yml b/.github/workflows/pull-db-tests.yml index 641a3cacb8bd2..18dfad54117cb 100644 --- a/.github/workflows/pull-db-tests.yml +++ b/.github/workflows/pull-db-tests.yml @@ -21,7 +21,7 @@ jobs: timeout-minutes: 50 services: pgsql: - image: postgres:14 + image: postgres:18 env: POSTGRES_DB: test POSTGRES_PASSWORD: postgres @@ -57,7 +57,7 @@ jobs: timeout-minutes: 50 services: pgsql: - image: postgres:14 + image: postgres:18 env: POSTGRES_DB: test POSTGRES_PASSWORD: postgres From 4211e84e3a9c908b8d1ccf6fbf3b9d8c0b5e98df Mon Sep 17 00:00:00 2001 From: Chongyi Zheng Date: Sun, 31 May 2026 02:16:08 -0500 Subject: [PATCH 2/3] Allow workflow dispatch --- .github/workflows/pull-db-tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pull-db-tests.yml b/.github/workflows/pull-db-tests.yml index 18dfad54117cb..321d397f64f03 100644 --- a/.github/workflows/pull-db-tests.yml +++ b/.github/workflows/pull-db-tests.yml @@ -2,6 +2,7 @@ name: db-tests on: pull_request: + workflow_dispatch: concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} From e5fc6f98922a70abd06bcce4361b160d88e4cd43 Mon Sep 17 00:00:00 2001 From: Chongyi Zheng Date: Sun, 31 May 2026 02:19:59 -0500 Subject: [PATCH 3/3] Force run pg tests --- .github/workflows/pull-db-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-db-tests.yml b/.github/workflows/pull-db-tests.yml index 321d397f64f03..45a8856c3f449 100644 --- a/.github/workflows/pull-db-tests.yml +++ b/.github/workflows/pull-db-tests.yml @@ -16,7 +16,7 @@ jobs: uses: ./.github/workflows/files-changed.yml test-pgsql-shard-1: - if: needs.files-changed.outputs.backend == 'true' + # if: needs.files-changed.outputs.backend == 'true' needs: files-changed runs-on: ubuntu-latest timeout-minutes: 50 @@ -52,7 +52,7 @@ jobs: run-migration: "true" test-pgsql-shard-2: - if: needs.files-changed.outputs.backend == 'true' + # if: needs.files-changed.outputs.backend == 'true' needs: files-changed runs-on: ubuntu-latest timeout-minutes: 50