1
0
mirror of https://github.com/cmur2/dyndnsd.git synced 2025-03-30 19:34:09 +02:00

gems: ignore irrelevant vulns in dev dependency solargraph

This commit is contained in:
cn 2025-02-27 22:40:22 +01:00 committed by Christian Nicolai
parent c2eab91a17
commit 07a2be0e7d

View File

@ -3,11 +3,9 @@
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'
require 'bundler/audit/task'
RSpec::Core::RakeTask.new(:spec)
RuboCop::RakeTask.new
Bundler::Audit::Task.new
desc 'Run experimental solargraph type checker'
task :solargraph do
@ -68,6 +66,13 @@ namespace :docker do
end
end
namespace :bundle do
desc 'Check for vulnerabilities with bundler-audit'
task :audit do
sh 'bundler-audit check --ignore GHSA-vvfq-8hwr-qm4m'
end
end
task default: [:rubocop, :spec, 'bundle:audit', :solargraph]
desc 'Run all tasks desired for CI'