chore(deps): update github-actions versions: Bump actions/setup-python from 5.1.0 to 5.3.0 #12
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: checkov | |
on: | |
pull_request: {} | |
workflow_dispatch: {} | |
push: | |
branches: | |
- main | |
permissions: read-all | |
jobs: | |
bandit: | |
name: checkov/ci | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: read | |
security-events: write | |
actions: read | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- name: Setup Python | |
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b | |
with: | |
python-version: 3.x | |
- name: Run Checkov | |
run: pip install checkov && ( checkov --quiet --output cli --output json --output-file-path console,checkov.json --directory . || echo "checkov non-zero $?" ) | |
- name: Store Checkov as Artifact | |
uses: actions/upload-artifact@18bf333cd2249fbbbdb605fd9d9ed57efd7adf34 | |
with: | |
name: checkov.json | |
path: checkov.json |