From 6e3b6901be7ba63d2f7be2bda0a8d4a7eb80d966 Mon Sep 17 00:00:00 2001 From: stvnrlly Date: Tue, 11 Jul 2023 21:31:14 -0400 Subject: [PATCH] try bandit artifact --- .github/workflows/checks.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 11f9fe449..c97cfe861 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -92,7 +92,12 @@ jobs: - name: Install bandit run: pip install bandit - name: Run scan - run: bandit -r app/ --confidence-level medium + run: bandit -r app/ -f txt -o /tmp/bandit-output.txt --confidence-level medium + - name: Upload bandit artifact + uses: action/upload-artifact@v3 + with: + name: bandit-report + path: /tmp/bandit-output.txt dynamic-scan: runs-on: ubuntu-latest