From dcb2decbda8ee5cdff7b104d6199e7229a50b28c Mon Sep 17 00:00:00 2001 From: cn Date: Thu, 26 Feb 2026 22:16:50 +0100 Subject: [PATCH] gems: ignore irrelevant vulns in dev dependency solargraph --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index d4130c6..d2e5baf 100644 --- a/Rakefile +++ b/Rakefile @@ -15,7 +15,7 @@ end namespace :bundle do desc 'Check for vulnerabilities with bundler-audit' task :audit do - sh 'bundler-audit check --ignore GHSA-vvfq-8hwr-qm4m' if !RUBY_VERSION.start_with?('3.0') + sh 'bundler-audit check --ignore GHSA-vvfq-8hwr-qm4m --ignore GHSA-wx95-c6cv-8532' if !RUBY_VERSION.start_with?('3.0') end end