-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #120 from Checkmarx/cx-monicac-update-kics-version
Update README.md
- Loading branch information
Showing
2 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,13 +63,13 @@ It is as simple as running a CLI tool, making it easy to integrate into any proj | |
<img alt="Azure BluePrints" src="images/logo-azure-blueprints.png" width="100"> | ||
<img alt="GitHub Workflows" src="images/logo-github-icon.png" width="100"> | ||
<img alt="OpenTofu" src="images/logo-opentofu.png" width="150"> | ||
<img alt="NIFCloud" src="images/logo-nifcloud.png" width="110"> | ||
|
||
#### Beta Features | ||
<img alt="Databricks" src="images/logo-databricks.png" width="200"> | ||
<img alt="NIFCloud" src="images/logo-nifcloud.png" width="110"> | ||
<img alt="TencentCloud" src="images/logo-tencentcloud.png" width="180"> | ||
|
||
In order to run the Databricks, NIFCloud and TencentCloud queries, use the `--experimental-queries` flag when running KICS. | ||
In order to run the Databricks and TencentCloud queries, use the `--experimental-queries` flag when running KICS. | ||
|
||
Official documentation page <a href="https://docs.kics.io">docs.kics.io</a> | ||
|
||
|
@@ -121,7 +121,7 @@ Ensure that you're using the <a href="https://github.com/Checkmarx/kics-github-a | |
- uses: actions/checkout@v3 | ||
# Scan Iac with kics | ||
- name: run kics Scan | ||
uses: checkmarx/[email protected].0 | ||
uses: checkmarx/[email protected].3 | ||
with: | ||
# scanning two directories: ./terraform/ ./cfn-templates/ plus a single file | ||
path: 'terraform,cfn-templates,my-other-sub-folder/Dockerfile' | ||
|
@@ -144,7 +144,7 @@ If you want KICS to ignore the results and return exit status code 0 unless a KI | |
steps: | ||
- uses: actions/checkout@v3 | ||
- name: run kics Scan | ||
uses: checkmarx/[email protected].0 | ||
uses: checkmarx/[email protected].3 | ||
with: | ||
path: 'terraform' | ||
ignore_on_exit: results | ||
|
@@ -162,7 +162,7 @@ If want your pipeline just to fail on HIGH and MEDIUM severity results and KICS | |
steps: | ||
- uses: actions/checkout@v3 | ||
- name: run kics Scan | ||
uses: checkmarx/[email protected].0 | ||
uses: checkmarx/[email protected].3 | ||
with: | ||
path: 'terraform,my-other-sub-folder/Dockerfile' | ||
fail_on: high,medium | ||
|
@@ -188,7 +188,7 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
- name: run kics Scan | ||
uses: checkmarx/[email protected].0 | ||
uses: checkmarx/[email protected].3 | ||
with: | ||
path: test/samples/positive1.tf,test/samples/positive2.tf | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -202,7 +202,7 @@ jobs: | |
|
||
<img alt="KICS Logo" src="https://user-images.githubusercontent.com/111127232/203838108-ad537fea-4573-495a-9619-18500ee81dd9.png"> | ||
|
||
**KICS version: 1.6.0** | ||
**KICS version: 2.1.3** | ||
|
||
<table> | ||
<tr></tr> | ||
|
@@ -247,7 +247,7 @@ You can only enable one profiler at a time, CPU or MEM. | |
steps: | ||
- uses: actions/checkout@v3 | ||
- name: run kics Scan | ||
uses: checkmarx/[email protected].0 | ||
uses: checkmarx/[email protected].3 | ||
with: | ||
path: 'terraform' | ||
profiling: MEM | ||
|
@@ -278,7 +278,7 @@ jobs: | |
# make sure results dir is created | ||
run: mkdir -p results-dir | ||
- name: Run KICS Scan with SARIF result | ||
uses: checkmarx/[email protected].0 | ||
uses: checkmarx/[email protected].3 | ||
with: | ||
path: 'terraform' | ||
# when provided with a directory on output_path | ||
|
@@ -344,7 +344,7 @@ jobs: | |
} | ||
EOF | ||
- name: Run KICS Scan using config | ||
uses: checkmarx/[email protected].0 | ||
uses: checkmarx/[email protected].3 | ||
with: | ||
path: 'terraform' | ||
config_path: ./kics.config | ||
|