Skip to content

Commit 6f71a4e

Browse files
Merge pull request #59 from konstruktoid/docs
update release version
2 parents ec3c0bc + eb86e59 commit 6f71a4e

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ It is as simple as running a CLI tool, making it easy to integrate into any proj
6767

6868
And official documentation page <a href="https://docs.kics.io">docs.kics.io</a>
6969

70+
And ensure that you're using the <a href="https://github.com/Checkmarx/kics-github-action/releases">latest KICS Github Action release</a> when creating a workflow.
71+
7072
## Inputs
7173

7274
| Variable | Example Value &nbsp; | Description &nbsp; | Type | Required | Default |
@@ -109,7 +111,7 @@ And official documentation page <a href="https://docs.kics.io">docs.kics.io</a>
109111
- uses: actions/checkout@v2
110112
# Scan Iac with kics
111113
- name: run kics Scan
112-
uses: checkmarx/kics-github-action@v1.3
114+
uses: checkmarx/kics-github-action@v1.5
113115
with:
114116
# scanning two directories: ./terraform/ ./cfn-templates/ plus a single file
115117
path: 'terraform,cfn-templates,my-other-sub-folder/Dockerfile'
@@ -132,7 +134,7 @@ If you want KICS to ignore the results and return exit status code 0 unless a KI
132134
steps:
133135
- uses: actions/checkout@v2
134136
- name: run kics Scan
135-
uses: checkmarx/kics-github-action@v1.3
137+
uses: checkmarx/kics-github-action@v1.5
136138
with:
137139
path: 'terraform'
138140
ignore_on_exit: results
@@ -150,7 +152,7 @@ If want your pipeline just to fail on HIGH and MEDIUM severity results and KICS
150152
steps:
151153
- uses: actions/checkout@v2
152154
- name: run kics Scan
153-
uses: checkmarx/kics-github-action@v1.3
155+
uses: checkmarx/kics-github-action@v1.5
154156
with:
155157
path: 'terraform,my-other-sub-folder/Dockerfile'
156158
fail_on: high,medium
@@ -176,7 +178,7 @@ jobs:
176178
steps:
177179
- uses: actions/checkout@v2
178180
- name: run kics Scan
179-
uses: checkmarx/kics-github-action@v1.3
181+
uses: checkmarx/kics-github-action@v1.5
180182
with:
181183
path: test/samples/positive1.tf,test/samples/positive2.tf
182184
token: ${{ secrets.GITHUB_TOKEN }}
@@ -235,7 +237,7 @@ You can only enable one profiler at a time, CPU or MEM.
235237
steps:
236238
- uses: actions/checkout@v2
237239
- name: run kics Scan
238-
uses: checkmarx/kics-github-action@v1.3
240+
uses: checkmarx/kics-github-action@v1.5
239241
with:
240242
path: 'terraform'
241243
profiling: MEM
@@ -266,7 +268,7 @@ jobs:
266268
# make sure results dir is created
267269
run: mkdir -p results-dir
268270
- name: Run KICS Scan with SARIF result
269-
uses: checkmarx/kics-github-action@v1.3
271+
uses: checkmarx/kics-github-action@v1.5
270272
with:
271273
path: 'terraform'
272274
# when provided with a directory on output_path
@@ -331,7 +333,7 @@ jobs:
331333
}
332334
EOF
333335
- name: Run KICS Scan using config
334-
uses: checkmarx/kics-github-action@v1.2
336+
uses: checkmarx/kics-github-action@v1.5
335337
with:
336338
path: 'terraform'
337339
config_path: ./kics.config

0 commit comments

Comments
 (0)