Skip to content

chore(deps): bump gunicorn from 21.2.0 to 23.0.0 #11

chore(deps): bump gunicorn from 21.2.0 to 23.0.0

chore(deps): bump gunicorn from 21.2.0 to 23.0.0 #11

Workflow file for this run

name: Security Scanning

Check failure on line 1 in .github/workflows/security.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/security.yml

Invalid workflow file

(Line: 17, Col: 9): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.SNYK_TOKEN != ''
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
# Run weekly on Mondays at 9am UTC
- cron: '0 9 * * 1'
jobs:
dependency-scan:
name: Dependency Scanning
runs-on: ubuntu-latest
# Skip if SNYK_TOKEN not configured
if: ${{ secrets.SNYK_TOKEN != '' }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run Snyk security scan
uses: snyk/actions/python@master
continue-on-error: true
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
with:
args: --severity-threshold=high --sarif-file-output=snyk.sarif
- name: Upload Snyk results
uses: github/codeql-action/upload-sarif@v4
if: always()
with:
sarif_file: snyk.sarif
codeql:
name: CodeQL Analysis
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: python
- name: Autobuild
uses: github/codeql-action/autobuild@v4
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4