Skip to content

Commit 49d71fa

Browse files
authored
Merge pull request #28 from ikalnytskyi/bug/macos-13-install-postgres
Fix macOS 13 support
2 parents 74e3964 + 88de67f commit 49d71fa

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

action.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,10 @@ runs:
5050
13.*)
5151
# Unfortunately, the macOS 13 runner image doesn't come w/
5252
# pre-installed PostgreSQL server.
53-
brew install postgresql@14
53+
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
54+
export HOMEBREW_NO_INSTALL_CLEANUP=1
55+
export HOMEBREW_NO_INSTALL_UPGRADE=1
56+
brew install --skip-post-install postgresql@14
5457
;;
5558
esac
5659
fi

0 commit comments

Comments
 (0)