chore(deps): update docker images: Bump docker/library/python from 220d075
to 9255d19
in /samples/document-explorer/client_app
#210
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: bandit | |
on: | |
pull_request: {} | |
workflow_dispatch: {} | |
push: | |
branches: | |
- main | |
permissions: read-all | |
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@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- name: Setup Python | |
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b | |
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@184d73b71b93c222403b2e7f1ffebe4508014249 | |
with: | |
name: bandit-report.html | |
path: bandit-report.html |