Changed the style and position of the maintenance incident request #27215
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Brakeman | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: ruby:3.4.2 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install Brakeman | |
| run: | | |
| gem install --no-format-executable brakeman -v 7.1.1 | |
| - name: Brakeman | |
| run: | | |
| brakeman -p src/api |