Skip to content

fix: correction to ECT landing page #571

fix: correction to ECT landing page

fix: correction to ECT landing page #571

Workflow file for this run

# This workflow integrates Brakeman with GitHub's Code Scanning feature
# Brakeman is a static analysis security vulnerability scanner for Ruby on Rails applications
name: Brakeman Scan
env:
BRAKEMAN_VERSION: "6.0.1"
on:
pull_request:
branches:
- main
jobs:
brakeman-scan:
name: Brakeman Scan
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/[email protected]
with:
ruby-version: ${{ inputs.ruby-version }}
- name: Setup Brakeman
run: |
gem install brakeman --version ${{ env.BRAKEMAN_VERSION }}
- name: Scan
continue-on-error: true
run: |
brakeman -f sarif -o output.sarif.json .
- name: Upload SARIF
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: output.sarif.json