From 467aebc3afc047f5ef983cc2acf1c0ede020350e Mon Sep 17 00:00:00 2001 From: official-Cromatin Date: Wed, 8 Oct 2025 16:02:41 +0200 Subject: [PATCH] Add bandit task to run on push --- .github/workflows/bandit.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/bandit.yml diff --git a/.github/workflows/bandit.yml b/.github/workflows/bandit.yml new file mode 100644 index 0000000..363e39d --- /dev/null +++ b/.github/workflows/bandit.yml @@ -0,0 +1,15 @@ +name: Code Analysis (Bandit) + +on: push +jobs: + bandit: + runs-on: self-hosted + steps: + - uses: actions/checkout@v4 + - uses: mdegis/bandit-action@v1.0 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + path: "src/" + level: high + confidence: high + exit_zero: true