From f3ecdbe8ac1f95be5e944a036ad3ddc96c93de83 Mon Sep 17 00:00:00 2001 From: Mike Alfare Date: Sat, 27 Jan 2024 17:53:42 -0500 Subject: [PATCH] update script call --- .github/actions/setup-postgres-linux/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-postgres-linux/action.yml b/.github/actions/setup-postgres-linux/action.yml index 8e75577d..9e49c4ae 100644 --- a/.github/actions/setup-postgres-linux/action.yml +++ b/.github/actions/setup-postgres-linux/action.yml @@ -10,6 +10,6 @@ runs: shell: bash - name: Configure the database - run: sudo su - postgres "psql -f ./setup_test_database.sql" + run: sudo -u postgres psql -f setup_test_database.sql shell: bash working-directory: ./scripts