From 46ce1447e6cd4254664380d2c2158a241af24200 Mon Sep 17 00:00:00 2001 From: Chibuike Onuigwe Date: Thu, 7 Jan 2021 13:31:31 -0500 Subject: [PATCH 1/3] Updated ReadMe to point to libertyy/py3-bandit-check@v2 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4eb8dd8..2d80222 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ jobs: with: fetch-depth: 0 #get fuller history - name: Run Bandit Report - uses: libertyy/py3-bandit-check@v1 + uses: libertyy/py3-bandit-check@v2 - name: Save Bandit txt Report if: ${{ always() }} uses: actions/upload-artifact@v2 From bc434d0ff85d03950161cd721b07973584fdefe3 Mon Sep 17 00:00:00 2001 From: Chibuike Onuigwe Date: Wed, 26 Jan 2022 17:14:18 -0500 Subject: [PATCH 2/3] updated default python version in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bb68945..367e821 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -FROM python:3.6.10-alpine +FROM python:3.8.12-alpine RUN apk update && apk add bash git RUN pip install bandit From 293a41a035779c98031ea30ae11be169baaeee43 Mon Sep 17 00:00:00 2001 From: Chibuike Onuigwe Date: Wed, 26 Jan 2022 17:39:45 -0500 Subject: [PATCH 3/3] updated default python version in Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index bb68945..f051a54 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ -FROM python:3.6.10-alpine +FROM python:3.8.12-alpine RUN apk update && apk add bash git -RUN pip install bandit +RUN pip install bandit==1.7.2 COPY ./post.sh /post.sh COPY ./entrypoint.sh /entrypoint.sh