diff --git a/.github/workflows/bandit.yaml b/.github/workflows/bandit.yaml new file mode 100644 index 000000000..86b304a83 --- /dev/null +++ b/.github/workflows/bandit.yaml @@ -0,0 +1,17 @@ +name: Bandit security scanner + +on: + - push + - pull_request + +jobs: + bandit: + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: read + steps: + - uses: mdegis/bandit-action@v1.0 + with: + path: "ols" + exit_zero: true