-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update and rename pylint.yml to CI.yml
- Loading branch information
Showing
2 changed files
with
67 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
name: CI | ||
|
||
on: [push] | ||
|
||
jobs: | ||
sast_scan: | ||
name: Run Bandit Scan | ||
runs-on: ubuntu-latest | ||
|
||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.8 | ||
|
||
- name: Install Bandit | ||
run: pip install bandit | ||
|
||
- name: Run Bandit Scan | ||
run: bandit -ll -ii -r . -f json -o bandit-report.json | ||
|
||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
name: bandit-findings | ||
path: bandit-report.json | ||
|
||
image_scan: | ||
name: Build Image and Run Image Scan | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set Up Docker | ||
uses: docker-practice/actions-setup-docker@v1 | ||
with: | ||
docker_version: '20.10.7' | ||
|
||
- name: Build Docker Image | ||
run: docker build -f Dockerfile -t myapp:latest . | ||
|
||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.REPO_USR }} | ||
password: ${{ secrets.DOCKER_TOKEN }} | ||
|
||
- name: Docker Scout Scan | ||
uses: docker/[email protected] | ||
with: | ||
command: quickview,cves | ||
only-severities: critical,high | ||
sarif-file: scout-report.sarif | ||
|
||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
name: docker-scout-findings | ||
path: scout-report.sarif |
This file was deleted.
Oops, something went wrong.