build(deps): bump pagy from 5.10.1 to 7.0.3 in /backend #1399
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: Backend Security | |
on: | |
push: | |
paths: | |
- 'backend/**' | |
- '.github/workflows/backend*' | |
# schedule: | |
# - cron: "0 14 * * *" | |
defaults: | |
run: | |
working-directory: backend | |
jobs: | |
backend_security: | |
name: Security | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get -yqq install libgeos-dev | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
working-directory: backend | |
bundler-cache: true | |
cache-version: 2 | |
- name: Run Brakeman | |
run: bundle exec brakeman | |
- name: Run Bundle Audit | |
run: bundle exec bundle-audit check --update --ignore CVE-2024-0227 |