Skip to content
activity

GitHub Action

Brakeman code scanning

v1.0.0 Latest version

Brakeman code scanning

activity

Brakeman code scanning

A GitHub action to run Brakeman, a static analysis security vulnerability scanner for Ruby on Rails applications

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Brakeman code scanning

uses: standardnotes/brakeman-action@v1.0.0

Learn more about this action in standardnotes/brakeman-action

Choose a version

brakeman-action

This action runs Brakeman against a repository's source code to find security vulnerabilities.

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.

Usage

name: Test pull requests
on:
  pull_request:
    branches: [ main, develop ]

jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Brakeman code scanning
        uses: standardnotes/brakeman-action@v1.0.0
        with:
          options: "--color -q"

License

This project is released under the MIT License.