Skip to content

Delete .github/workflows/pyflake.yml #6

Delete .github/workflows/pyflake.yml

Delete .github/workflows/pyflake.yml #6

Workflow file for this run

name: Bandit and Trivy Scan
on:
push:
branches: [main]
jobs:
bandit:
permissions:
contents: read
security-events: write
actions: read
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Bandit Scan
uses: shundor/python-bandit-scan@9cc5aa4a006482b8a7f91134412df6772dbda22c
with:
exit_zero: true
trivy:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Container Scan
uses: knqyf263/trivy-issue-action@v0.0.6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}