Skip to content

Commit 38b4181

Browse files
authored
Merge pull request #276 from bastelfreak/openssl
openssl: Pin to 3.x
2 parents 7a051e6 + deaacdc commit 38b4181

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Gemfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ gem "puppet-resource_api", *location_for(ENV['RESOURCE_API_LOCATION'] || ["~> 2.
2222
# Need to update the openssl gem on MacOS to avoid SSL errors. Doesn't hurt to have the newest
2323
# for all platforms.
2424
# https://www.rubyonmac.dev/certificate-verify-failed-unable-to-get-certificate-crl-openssl-ssl-sslerror
25-
gem 'openssl' unless `uname -o`.chomp == 'Cygwin'
25+
# openssl 4 raises some errors that need to be investigated
26+
gem 'openssl', '~> 3' unless `uname -o`.chomp == 'Cygwin'
2627

2728
group(:features) do
2829
gem 'diff-lcs', '~> 1.3', require: false

0 commit comments

Comments
 (0)