Skip to content

changes to vulns

changes to vulns #15

Workflow file for this run

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"