From 4ffb2ce79efff5085c82e45a73835c7d58fd40ef Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Tue, 17 Dec 2024 06:33:48 +0800 Subject: [PATCH] Fix Linux postgres CI setup --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aca63f0..06408dd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,8 +43,8 @@ jobs: run: | sudo apt-get update sudo apt-get install -y postgresql - sudo sed -i "s/scram-sha-256/trust/" /etc/postgresql/14/main/pg_hba.conf - sudo cat /etc/postgresql/14/main/pg_hba.conf + sudo sed -i "s/scram-sha-256/trust/" /etc/postgresql/16/main/pg_hba.conf + sudo cat /etc/postgresql/16/main/pg_hba.conf sudo service postgresql restart && sleep 3 echo BUTANE_PG_CONNSTR="host=localhost user=postgres sslmode=disable port=5432" >> $GITHUB_ENV - name: Setup postgres on MacOS