changes to vulns #15
This file contains hidden or 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: KICS IaC Scan | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
kics-scan: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Run KICS Scan | |
uses: checkmarx/[email protected] | |
with: | |
path: '.' # Path to scan, this will scan the entire repo | |
output_path: 'kics_results' # Path where results will be stored | |
- name: Display KICS Scan Results | |
run: | | |
echo "KICS Scan Output:" | |
cat kics_results/* || echo "No results found" |