From 6ce4e320fdb619a2cd7a71875fbc002305c01eda Mon Sep 17 00:00:00 2001 From: Andrew Montanez Date: Wed, 3 Apr 2024 16:11:10 -0500 Subject: [PATCH 1/2] trying getting rid of python --- .github/workflows/static_code_analysis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/static_code_analysis.yml b/.github/workflows/static_code_analysis.yml index 110f50dfd..26eb57a90 100644 --- a/.github/workflows/static_code_analysis.yml +++ b/.github/workflows/static_code_analysis.yml @@ -19,7 +19,7 @@ jobs: python -m pip install --upgrade pip python -m pip install bandit==1.7.7 - name: Save code analysis - run: python -m bandit -r . -x ./tests -f txt -o static_code_analysis.txt + run: bandit -r . -x ./tests -f txt -o static_code_analysis.txt - name: Create pull request id: cpr uses: peter-evans/create-pull-request@v4 From e1dcdf40f050b244c1c595b37a054d82f257b319 Mon Sep 17 00:00:00 2001 From: Andrew Montanez Date: Wed, 3 Apr 2024 16:25:45 -0500 Subject: [PATCH 2/2] exiting with 0 --- .github/workflows/static_code_analysis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/static_code_analysis.yml b/.github/workflows/static_code_analysis.yml index 26eb57a90..bc92eeb82 100644 --- a/.github/workflows/static_code_analysis.yml +++ b/.github/workflows/static_code_analysis.yml @@ -19,7 +19,7 @@ jobs: python -m pip install --upgrade pip python -m pip install bandit==1.7.7 - name: Save code analysis - run: bandit -r . -x ./tests -f txt -o static_code_analysis.txt + run: bandit -r . -x ./tests -f txt -o static_code_analysis.txt --exit-zero - name: Create pull request id: cpr uses: peter-evans/create-pull-request@v4