Merge pull request #61 from eriwen/fix-release-packages #31
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: Security check - Bandit | |
on: | |
push: | |
branches: [ "*" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
permissions: | |
checks: write # for bandit-report-artifacts to publish the checks | |
contents: read # for actions/checkout to fetch code | |
security-events: write # for bandit-report-artifacts to upload results | |
actions: read # only on private (maybe?) required to get the Action run status | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run bandit | |
uses: VCTLabs/bandit-report-artifacts@master | |
with: | |
project_path: lcov_cobertura | |
ignore_failure: false |