Skip to content

Commit

Permalink
Update and rename pylint.yml to CI.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
eoyewobi authored Oct 4, 2024
1 parent 606a186 commit e592949
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 24 deletions.
67 changes: 67 additions & 0 deletions .github/workflows/CI.yml
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
24 changes: 0 additions & 24 deletions .github/workflows/pylint.yml

This file was deleted.

0 comments on commit e592949

Please sign in to comment.