SCA Scan Project 3.yml #8
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
name: IaC Security Scan Project 1 | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy-and-scan: | |
name: Run IaC Security Scan | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install Trivy | |
run: | | |
wget -qO - https://aquasecurity.github.io/trivy-repo/deb/public.key | sudo apt-key add - | |
echo deb https://aquasecurity.github.io/trivy-repo/deb $(lsb_release -cs) main | sudo tee -a /etc/apt/sources.list.d/trivy.list | |
sudo apt-get update && sudo apt-get install -yq trivy | |
build: | |
name: IaC Scan | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Run Trivy vulnerability scanner in fs mode | |
uses: aquasecurity/trivy-action@master | |
with: | |
scan-type: 'fs' | |
scanners: 'misconfig' | |
scan-ref: '.' | |
hide-progress: false | |
format: 'table' | |
ignore-unfixed: true | |