make the footer stick to the bottom of the page #30
Workflow file for this run
This file contains 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: Security | |
on: [push] | |
jobs: | |
security: | |
name: Brakeman (Static security) | |
if: "${{ github.actor != 'dependabot[bot]' }}" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
cache-version: 321 | |
- name: Run Brakeman | |
run: bundle exec brakeman -q |