Skip to content

Commit

Permalink
OPSEXP-2121 Add kics scan
Browse files Browse the repository at this point in the history
  • Loading branch information
pmacius committed Sep 25, 2024
1 parent 8e7d1fa commit bfd31cb
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/kics.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: kics

on:
pull_request:
branches: [main]
push:
branches: [main]

permissions:
security-events: write

jobs:
kics:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Run KICS Scan
uses: checkmarx/kics-github-action@530ac1f8efe6202b0f12c9a6e952597ae707b755 # v2.1.2
with:
path: './'
ignore_on_exit: results
output_path: report-dir/
output_formats: 'pdf'
token: ${{ secrets.GITHUB_TOKEN }}
enable_jobs_summary: true
platform_type: docker
disable_secrets: true
- name: Upload KICS Report
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
with:
path: report-dir/results.pdf
name: kics-report

0 comments on commit bfd31cb

Please sign in to comment.