Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/standardnotes/brakeman-action
- Owner: standardnotes
- License: mit
- Created: 2021-05-01T00:40:20.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-05-01T02:18:02.000Z (almost 4 years ago)
- Last Synced: 2024-12-18T15:11:38.595Z (about 2 months ago)
- Topics: brakeman, rails, review, ruby, security, static-code-analysis
- Homepage:
- Size: 6.84 KB
- Stars: 4
- Watchers: 4
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).