From 2571915c620eca4843a16b80b324b4e99d8353be Mon Sep 17 00:00:00 2001 From: Jonathan Lennox Date: Wed, 24 Jan 2024 14:18:45 -0500 Subject: [PATCH] Fix arm64 openssl workflow: homebrew no longer has openssl@3 versions for macOS Big Sur. (#51) --- .github/workflows/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 6446ad7..91f3083 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -125,7 +125,7 @@ jobs: if: matrix.arch == 'arm64' run: | brew uninstall --ignore-dependencies openssl@${{ matrix.libssl }} || true - brew fetch --force --bottle-tag=arm64_big_sur openssl@${{ matrix.libssl }} | grep "Downloaded to:" | awk '{ print $3 }' | xargs -n 1 brew install + brew fetch --force --bottle-tag=arm64_monterey openssl@${{ matrix.libssl }} | grep "Downloaded to:" | awk '{ print $3 }' | xargs -n 1 brew install - name: Build natives with CMake run: resources/mac-cmake.sh "${{ steps.install_java.outputs.path }}" "${{ matrix.arch }}" "${{ matrix.libssl }}"