diff --git a/.github/workflows/security.yaml b/.github/workflows/security.yaml new file mode 100644 index 00000000..309cf08b --- /dev/null +++ b/.github/workflows/security.yaml @@ -0,0 +1,19 @@ +name: Bandit + +on: + workflow_dispatch: + +jobs: + analyze: + runs-on: ubuntu-latest + permissions: + security-events: write + actions: read + contents: read + steps: + - name: Perform Bandit Analysis + uses: PyCQA/bandit-action@v1 + with: + severity: medium + confidence: medium + targets: "src/a2a"