mirror of
https://github.com/inspec/inspec
synced 2024-11-22 12:43:07 +00:00
CHORE: Fix lint offense, TrailingWhitespace & EmptyLines (#6830)
Signed-off-by: Sonu Saha <sonu.saha@progress.com>
This commit is contained in:
parent
6c8ae52d1c
commit
d4bbb4d2c4
1 changed files with 1 additions and 2 deletions
|
@ -5,12 +5,11 @@ train_stable = /^train \((.*)\)/.match(`gem list ^train$ --remote`)[1]
|
||||||
override "train", version: "v#{train_stable}"
|
override "train", version: "v#{train_stable}"
|
||||||
override "ruby", version: "3.1.2"
|
override "ruby", version: "3.1.2"
|
||||||
|
|
||||||
|
|
||||||
# Mac Apple Silicon requires 1.1.1 series instead of 1.0.2 series
|
# Mac Apple Silicon requires 1.1.1 series instead of 1.0.2 series
|
||||||
if mac_os_x?
|
if mac_os_x?
|
||||||
override "openssl", version: "1.1.1w"
|
override "openssl", version: "1.1.1w"
|
||||||
else
|
else
|
||||||
# Hopefully temporary, in October 2023 the default is 1.0.2zg which
|
# Hopefully temporary, in October 2023 the default is 1.0.2zg which
|
||||||
# has an open high cve, while zi is available. Temporarily pin until
|
# has an open high cve, while zi is available. Temporarily pin until
|
||||||
# default in omnibus-software has no cves.
|
# default in omnibus-software has no cves.
|
||||||
override "openssl", version: "1.0.2zi"
|
override "openssl", version: "1.0.2zi"
|
||||||
|
|
Loading…
Reference in a new issue