From f1dd7b4d24b76c2fe97b2fbe255b26ee91cd69a6 Mon Sep 17 00:00:00 2001 From: Orien Madgwick <497874+orien@users.noreply.github.com> Date: Thu, 8 Feb 2024 10:42:39 +1100 Subject: [PATCH] CI: ignore GHSA-xc9x-jj77-9p9j until on Ruby 3.0 --- Rakefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 20e90a076..a7e09aaef 100644 --- a/Rakefile +++ b/Rakefile @@ -63,7 +63,9 @@ task :bundle_audit do # TODO: remove CVE-2015-9284 once https://github.com/omniauth/omniauth/pull/809 is resolved # TODO: remove CVE-2022-0759 once local development works on newer version # TODO: remove GHSA-hjp3-5g2q-7jww will need ruby 3.0 - sh "bundle-audit check --update --ignore CVE-2015-9284 CVE-2022-0759 GHSA-hjp3-5g2q-7jww CVE-2023-34246" + # TODO: remove GHSA-xc9x-jj77-9p9j will need ruby 3.0 + sh "bundle-audit check --update " \ + "--ignore CVE-2015-9284 CVE-2022-0759 GHSA-hjp3-5g2q-7jww CVE-2023-34246 GHSA-xc9x-jj77-9p9j" end desc "Run rubocop"