From fd68f1f25403c4a0c9b6a8ab6fa1601fbc6dc4e1 Mon Sep 17 00:00:00 2001 From: cn Date: Mon, 31 Mar 2025 22:52:07 +0200 Subject: [PATCH] ci: ignore vuln on old rubies --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 453f6d2..3660b1e 100644 --- a/Rakefile +++ b/Rakefile @@ -22,7 +22,7 @@ end namespace :bundle do desc 'Check for vulnerabilities with bundler-audit' task :audit do - sh 'bundler-audit check --ignore GHSA-vvfq-8hwr-qm4m' + sh 'bundler-audit check --ignore GHSA-vvfq-8hwr-qm4m' if !RUBY_VERSION.start_with?('3.0') end end