Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM checkmarx/kics:v2.1.18 as kics-env
FROM checkmarx/kics:v2.1.19 as kics-env

FROM cgr.dev/chainguard/wolfi-base:latest

Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,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/kics-github-action@v2.1.18
uses: checkmarx/kics-github-action@v2.1.19
with:
# scanning two directories: ./terraform/ ./cfn-templates/ plus a single file
path: 'terraform,cfn-templates,my-other-sub-folder/Dockerfile'
Expand All @@ -235,7 +235,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/kics-github-action@v2.1.18
uses: checkmarx/kics-github-action@v2.1.19
with:
path: 'terraform'
ignore_on_exit: results
Expand All @@ -253,7 +253,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/kics-github-action@v2.1.18
uses: checkmarx/kics-github-action@v2.1.19
with:
path: 'terraform,my-other-sub-folder/Dockerfile'
fail_on: high,medium
Expand All @@ -279,7 +279,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: run kics Scan
uses: checkmarx/kics-github-action@v2.1.18
uses: checkmarx/kics-github-action@v2.1.19
with:
path: test/samples/positive1.tf,test/samples/positive2.tf
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -338,7 +338,7 @@ You can only enable one profiler at a time, CPU or MEM.
steps:
- uses: actions/checkout@v3
- name: run kics Scan
uses: checkmarx/kics-github-action@v2.1.18
uses: checkmarx/kics-github-action@v2.1.19
with:
path: 'terraform'
profiling: MEM
Expand Down Expand Up @@ -369,7 +369,7 @@ jobs:
# make sure results dir is created
run: mkdir -p results-dir
- name: Run KICS Scan with SARIF result
uses: checkmarx/kics-github-action@v2.1.18
uses: checkmarx/kics-github-action@v2.1.19
with:
path: 'terraform'
# when provided with a directory on output_path
Expand Down Expand Up @@ -435,7 +435,7 @@ jobs:
}
EOF
- name: Run KICS Scan using config
uses: checkmarx/kics-github-action@v2.1.18
uses: checkmarx/kics-github-action@v2.1.19
with:
path: 'terraform'
config_path: ./kics.config
Expand Down
Loading