From 61b19b617d98b1948a52298f5fbdf531e7f8fc41 Mon Sep 17 00:00:00 2001 From: Noah <37805707+Curve@users.noreply.github.com> Date: Sat, 2 Nov 2024 12:33:10 +0100 Subject: [PATCH] fix(actions/setup): bump macos deployment target --- .github/actions/setup/action.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index b6fb77d8..a148b598 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -24,3 +24,9 @@ runs: run: | brew reinstall --build-from-source libomp echo "OpenMP_ROOT=$(brew --prefix)/opt/libomp" >> $GITHUB_ENV + + - name: 💻 Setup Deployment Target + shell: bash + if: ${{ inputs.os == 'macos-latest' }} + run: | + echo "MACOSX_DEPLOYMENT_TARGET=14.0" >> $GITHUB_ENV