Skip to content

Commit

Permalink
Allow CI pass with dependency vulnerabilities (#763)
Browse files Browse the repository at this point in the history
* Allow ci pass with dependency vulnerabilities

* Fix removed line

* Run bundle audit but ignore errors
  • Loading branch information
wilco375 authored Aug 25, 2022
1 parent 83f495b commit bdf2881
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if [ "${TYPE}" = "lint" ] || [ "${TYPE}" = "" ]; then

echo "--- :ruby: Bundle audit"
gem install bundler-audit
bundle-audit update && bundle-audit check --ignore CVE-2015-9284
bundle-audit update && bundle-audit check --ignore CVE-2015-9284 || true
RAILS_ENV=test bundle exec rails db:create db:environment:set db:schema:load
# Don't check DB consistency until solved: https://github.com/trptcolin/consistency_fail/issues/42
# bundle exec consistency_fail
Expand Down

0 comments on commit bdf2881

Please sign in to comment.