|
6 | 6 |
|
7 | 7 | - [KICS Github Action](#kics-github-action) |
8 | 8 | - [Integrate KICS into your GitHub workflows](#integrate-kics-into-your-github-workflows) |
9 | | - - [Supported Platforms](#supported-platforms) |
| 9 | + - [Supported Platforms](#supported-platforms) |
10 | 10 | - [Please find more info in the official website: <a href="https://kics.io">kics.io</a>](#please-find-more-info-in-the-official-website-kicsio) |
11 | 11 | - [Inputs](#inputs) |
12 | 12 | - [Simple usage example](#simple-usage-example) |
@@ -76,6 +76,7 @@ And ensure that you're using the <a href="https://github.com/Checkmarx/kics-gith |
76 | 76 | | enable_comment | true | Enable pull request report comments | Boolean | No | false | |
77 | 77 | | disable_annotations | true | Disable annotations report | Boolean | No | false | |
78 | 78 | | comments_with_queries | true | Add queries in th pull request report comments (available when enable_comments = true) | Boolean | No | false | |
| 79 | +| enable_jobs_summary | true | Enable report as jobs summary | Boolean | No | false | |
79 | 80 | | excluded_column_for_comments_with_queries | description_id,similarity_id,search_line,search_value | Excluded columns for the comment with queries, accepts a comma separated list | String | No | description_id,similarity_id,search_line,search_value | |
80 | 81 | | path | terraform/main.tf,Dockerfile | paths to a file or directories to scan, comma separated list | String | Yes | N/A | |
81 | 82 | | ignore_on_exit | results | defines which non-zero exit codes should be ignored (all, results, errors, none) | String | No | none | |
@@ -238,16 +239,16 @@ You can only enable one profiler at a time, CPU or MEM. |
238 | 239 |
|
239 | 240 | ```yaml |
240 | 241 | steps: |
241 | | - - uses: actions/checkout@v3 |
242 | | - - name: run kics Scan |
243 | | - |
244 | | - with: |
245 | | - path: 'terraform' |
246 | | - profiling: MEM |
247 | | - output_path: myResults/ |
248 | | - - name: display kics results |
249 | | - run: | |
250 | | - cat myResults/results.json |
| 242 | + - uses: actions/checkout@v3 |
| 243 | + - name: run kics Scan |
| 244 | + |
| 245 | + with: |
| 246 | + path: 'terraform' |
| 247 | + profiling: MEM |
| 248 | + output_path: myResults/ |
| 249 | + - name: display kics results |
| 250 | + run: | |
| 251 | + cat myResults/results.json |
251 | 252 | ``` |
252 | 253 |
|
253 | 254 | ## Uploading SARIF report |
|
0 commit comments