Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/standardnotes/brakeman-action

Runs Brakeman against a repository's source code to find security vulnerabilities, using GitHub actions.
https://github.com/standardnotes/brakeman-action

brakeman rails review ruby security static-code-analysis

Last synced: about 2 months ago
JSON representation

Runs Brakeman against a repository's source code to find security vulnerabilities, using GitHub actions.

Awesome Lists containing this project

README

        

# brakeman-action

This action runs [Brakeman](https://brakemanscanner.org/) 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

```yaml
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/[email protected]
with:
options: "--color -q"
```

## License

This project is released under the [MIT License](LICENSE).