From a32b5ba3b750226806f44479cec185b539f0a84b Mon Sep 17 00:00:00 2001 From: Michelle Ark Date: Thu, 18 Jul 2024 15:19:56 -0400 Subject: [PATCH] fix postgres setup on mac --- .github/actions/setup-postgres-macos/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-postgres-macos/action.yml b/.github/actions/setup-postgres-macos/action.yml index af9a9fe1657..c053a9118af 100644 --- a/.github/actions/setup-postgres-macos/action.yml +++ b/.github/actions/setup-postgres-macos/action.yml @@ -5,7 +5,7 @@ runs: steps: - shell: bash run: | - brew services start postgresql + brew services start postgresql@14 echo "Check PostgreSQL service is running" i=10 COMMAND='pg_isready'