mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
22c530417b
* Testing openssl upgrade with version 1.1.1w Signed-off-by: Nik08 <nikita.mathur@progress.com> * Reverted change using test branch for openssl - using main branch for omnibus software Signed-off-by: Nik08 <nikita.mathur@progress.com> * Reverted unwanted changes from omnibus Gemfile and Gemfile.lock Signed-off-by: Nik08 <nikita.mathur@progress.com> --------- Signed-off-by: Nik08 <nikita.mathur@progress.com>
11 lines
No EOL
361 B
Ruby
11 lines
No EOL
361 B
Ruby
# THIS IS NOW HAND MANAGED, JUST EDIT THE THING
|
|
|
|
# grab the current train release from rubygems.org
|
|
train_stable = /^train \((.*)\)/.match(`gem list ^train$ --remote`)[1]
|
|
override "train", version: "v#{train_stable}"
|
|
override "ruby", version: "3.1.2"
|
|
|
|
# Mac m1
|
|
override "openssl", version: "1.1.1w" if mac_os_x?
|
|
|
|
override "ruby-msys2-devkit", version: "3.1.2-1" |