From 85a5c36aa4983555cf5f67915ded32fbdec20472 Mon Sep 17 00:00:00 2001 From: Ihor Kalnytskyi Date: Tue, 19 Mar 2024 02:36:21 +0200 Subject: [PATCH] Add macOS 14 support The macOS 14 runner image isn't shipped with pre-installed PostgreSQL server. Even though it has Beta status, it'd be nice to support this runner image too. Co-authored-by: hfhbd --- .github/workflows/ci.yml | 1 + action.yml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2d6464201..b7cf1f03a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,6 +18,7 @@ jobs: - windows-latest - macos-latest - macos-13 + - macos-14 steps: - uses: actions/checkout@v4 diff --git a/action.yml b/action.yml index 4d6cc59fa..ee399a427 100644 --- a/action.yml +++ b/action.yml @@ -47,7 +47,7 @@ runs: done elif [ "$RUNNER_OS" == "macOS" ]; then case "$(sw_vers -productVersion)" in - 13.*) + 13.*|14.*) # Unfortunately, the macOS 13 runner image doesn't come w/ # pre-installed PostgreSQL server. export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1