Search By: Continuous Integration
Setting up the bundler-audit gem for Rails with Github Actions

Using the bundler-audit gem is a great way to keep track of vulnerabilities in your Gemfile.

Once installed it's pretty easy to run bundle-audit as a check on every PR submitted to your repo. GitHub Actions is a quick solution that can help accomplish this.

Setting Up Brakeman gem for Rails with Github Actions

The Brakeman gem is a highly useful tool in keeping your development habits clean.

From their website:
Brakeman is a free vulnerability scanner specifically designed for Ruby on Rails applications. It statically analyzes Rails application code to find security issues at any stage of development.

Once installed it's pretty easy to have Brakeman checks run on every PR submitted to your repo. GitHub Actions is a quick solution that can help accomplish this.