Skip to content

Update security-checks to ignore Jinja2 vulnerability #1

Update security-checks to ignore Jinja2 vulnerability

Update security-checks to ignore Jinja2 vulnerability #1

name: Security Checks
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
security:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install safety
- name: Check for vulnerable dependencies with Safety
run: |
safety check --full-report --ignore 70612