Skip to content

chore(deps): upgrade dependencies #3882

chore(deps): upgrade dependencies

chore(deps): upgrade dependencies #3882

Workflow file for this run

# ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen".
name: bandit
on:
pull_request: {}
workflow_dispatch: {}
push:
branches:
- main
schedule:
- cron: 20 17 * * *
jobs:
bandit:
name: bandit/ci
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: read
security-events: write
actions: read
if: (github.actor != 'dependabot[bot]')
steps:
- name: Checkout project
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
- name: Setup Python
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c
with:
python-version: 3.x
- name: Run Bandit
run: pip install bandit && bandit --recursive --format html --output bandit-report.html --exit-zero .
- name: Store Bandit as Artifact
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
with:
name: bandit-report.html
path: bandit-report.html
overwrite: true