summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMSP-Greg <Greg.mpls@gmail.com>2024-06-21 17:25:16 -0500
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2024-06-24 09:03:55 +0900
commit18404af9ec0b797be37450ae93e7f46a1ab2ec08 (patch)
treecc8621f3a78bd7e30504a660bae2a5249a5a42c5
parentacce96647d4cdb8669de1f57ce0b0ba213870b53 (diff)
.github/actions/setup/macos/action.yml - use brew openssl@3, not 1.1
-rw-r--r--.github/actions/setup/macos/action.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/actions/setup/macos/action.yml b/.github/actions/setup/macos/action.yml
index b96e959aa6..24ba48139a 100644
--- a/.github/actions/setup/macos/action.yml
+++ b/.github/actions/setup/macos/action.yml
@@ -13,7 +13,7 @@ runs:
- name: brew
shell: bash
run: |
- brew install --quiet gmp libffi openssl@1.1 zlib autoconf automake libtool
+ brew install --quiet gmp libffi openssl@3 zlib autoconf automake libtool
- name: Set ENV
shell: bash
@@ -21,7 +21,7 @@ runs:
for lib in gmp; do
ruby_configure_args="${ruby_configure_args:+$ruby_configure_args }--with-${lib%@*}-dir=$(brew --prefix $lib)"
done
- for lib in openssl@1.1; do
+ for lib in openssl@3; do
CONFIGURE_ARGS="${CONFIGURE_ARGS:+$CONFIGURE_ARGS }--with-${lib%@*}-dir=$(brew --prefix $lib)"
done
echo ruby_configure_args="${ruby_configure_args}" >> $GITHUB_ENV