diff --git a/.github/workflows/brakeman.yml b/.github/workflows/brakeman.yml index 7526aa64..6697cb12 100644 --- a/.github/workflows/brakeman.yml +++ b/.github/workflows/brakeman.yml @@ -40,14 +40,14 @@ jobs: ruby-version: '2.7' bundler-cache: true - - name: Install dependencies - run: bundle install brakeman + - name: Install brakeman + run: gem install brakeman # Execute Brakeman CLI and generate a SARIF output with the security issues identified during the analysis - name: Scan continue-on-error: true run: | - bundle exec brakeman -f sarif -o output.sarif.json . + brakeman -f sarif -o output.sarif.json . # Upload the SARIF file generated in the previous step - name: Upload SARIF