Bump alpine from 3.21.0 to 3.21.1 #673
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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# Bandit is a security linter designed to find common security issues in Python code. | |
# This action will run Bandit on your codebase. | |
# The results of the scan will be found under the Security tab of your repository. | |
# https://github.com/marketplace/actions/bandit-scan is ISC licensed, by abirismyname | |
# https://pypi.org/project/bandit/ is Apache v2.0 licensed, by PyCQA | |
name: Bandit | |
on: | |
[push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
bandit: | |
permissions: | |
contents: read # for actions/checkout to fetch code | |
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results | |
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Bandit Scan | |
uses: PyCQA/bandit-action@8a1b30610f61f3f792fe7556e888c9d7dffa52de # v1.0.0 |