Skip to content

Commit 18404af

Browse files
MSP-Greghsbt
authored andcommitted
.github/actions/setup/macos/action.yml - use brew openssl@3, not 1.1
1 parent acce966 commit 18404af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/setup/macos/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ runs:
1313
- name: brew
1414
shell: bash
1515
run: |
16-
brew install --quiet gmp libffi openssl@1.1 zlib autoconf automake libtool
16+
brew install --quiet gmp libffi openssl@3 zlib autoconf automake libtool
1717
1818
- name: Set ENV
1919
shell: bash
2020
run: |
2121
for lib in gmp; do
2222
ruby_configure_args="${ruby_configure_args:+$ruby_configure_args }--with-${lib%@*}-dir=$(brew --prefix $lib)"
2323
done
24-
for lib in openssl@1.1; do
24+
for lib in openssl@3; do
2525
CONFIGURE_ARGS="${CONFIGURE_ARGS:+$CONFIGURE_ARGS }--with-${lib%@*}-dir=$(brew --prefix $lib)"
2626
done
2727
echo ruby_configure_args="${ruby_configure_args}" >> $GITHUB_ENV

0 commit comments

Comments
 (0)