From bf15506f0d151f0f84202a317becec714c7663fa Mon Sep 17 00:00:00 2001 From: cn Date: Thu, 4 Jun 2026 22:54:21 +0200 Subject: [PATCH] project: ignore inapplicable vulns --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 4990425..39a9f8f 100644 --- a/Rakefile +++ b/Rakefile @@ -69,7 +69,7 @@ end namespace :bundle do desc 'Check for vulnerabilities with bundler-audit' task :audit do - sh 'bundler-audit check --ignore GHSA-vvfq-8hwr-qm4m --ignore GHSA-wx95-c6cv-8532' 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', '3.1') end end