Skip to content

Commit b974e53

Browse files
Update kics to version 2.1.20 (#150)
1 parent 05aa5eb commit b974e53

File tree

2 files changed

+146
-38
lines changed

2 files changed

+146
-38
lines changed

action.yml

100644100755
Lines changed: 41 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -108,41 +108,44 @@ branding:
108108
icon: "shield"
109109
color: "green"
110110
runs:
111-
using: "docker"
112-
image: Dockerfile
113-
env:
114-
INPUT_TOKEN: ${{ inputs.token }}
115-
INPUT_OUTPUT_PATH: ${{ inputs.output_path }}
116-
INPUT_ENABLE_ANNOTATIONS: ${{ inputs.enable_annotations }}
117-
INPUT_ENABLE_COMMENTS: ${{ inputs.enable_comments }}
118-
INPUT_ENABLE_JOBS_SUMMARY: ${{ inputs.enable_jobs_summary }}
119-
INPUT_COMMENTS_WITH_QUERIES: ${{ inputs.comments_with_queries }}
120-
INPUT_EXCLUDED_COLUMNS_FOR_COMMENTS_WITH_QUERIES: ${{ inputs.excluded_column_for_comments_with_queries }}
121-
INPUT_OUTPUT_FORMATS: ${{ inputs.output_formats }}
122-
WORKSPACE_PATH: $GITHUB_WORKSPACE
123-
args:
124-
- ${{ inputs.path }}
125-
- ${{ inputs.fail_on }}
126-
- ${{ inputs.timeout }}
127-
- ${{ inputs.profiling }}
128-
- ${{ inputs.config }}
129-
- ${{ inputs.platform_type }}
130-
- ${{ inputs.exclude_paths }}
131-
- ${{ inputs.exclude_queries }}
132-
- ${{ inputs.include_queries }}
133-
- ${{ inputs.exclude_categories }}
134-
- ${{ inputs.exclude_results }}
135-
- ${{ inputs.exclude_severities }}
136-
- ${{ inputs.exclude_gitignore}}
137-
- ${{ inputs.output_formats }}
138-
- ${{ inputs.output_path }}
139-
- ${{ inputs.payload_path }}
140-
- ${{ inputs.queries }}
141-
- ${{ inputs.verbose }}
142-
- ${{ inputs.bom }}
143-
- ${{ inputs.ignore_on_exit }}
144-
- ${{ inputs.disable_secrets }}
145-
- ${{ inputs.disable_full_descriptions }}
146-
- ${{ inputs.libraries_path }}
147-
- ${{ inputs.secrets_regexes_path}}
148-
- ${{ inputs.cloud_provider}}
111+
using: "composite"
112+
steps:
113+
- name: "Prepare Environment"
114+
continue-on-error: true
115+
run: ${{ github.action_path }}/setup.sh
116+
shell: bash
117+
- name: "Run KICS"
118+
uses: checkmarx/kics-github-action@05aa5eb70eede1355220f4ca5238d96b397e30a6
119+
with:
120+
token: ${{ inputs.token }}
121+
enable_annotations: ${{ inputs.enable_annotations }}
122+
enable_comments: ${{ inputs.enable_comments }}
123+
enable_jobs_summary: ${{ inputs.enable_jobs_summary }}
124+
comments_with_queries: ${{ inputs.comments_with_queries }}
125+
excluded_column_for_comments_with_queries: ${{ inputs.excluded_column_for_comments_with_queries }}
126+
path: ${{ inputs.path }}
127+
ignore_on_exit: ${{ inputs.ignore_on_exit }}
128+
fail_on: ${{ inputs.fail_on }}
129+
timeout: ${{ inputs.timeout }}
130+
profiling: ${{ inputs.profiling }}
131+
config_path: ${{ inputs.config_path }}
132+
platform_type: ${{ inputs.platform_type }}
133+
exclude_paths: ${{ inputs.exclude_paths }}
134+
exclude_queries: ${{ inputs.exclude_queries }}
135+
exclude_categories: ${{ inputs.exclude_categories }}
136+
exclude_results: ${{ inputs.exclude_results }}
137+
exclude_severities: ${{ inputs.exclude_severities }}
138+
exclude_gitignore: ${{ inputs.exclude_gitignore }}
139+
output_formats: ${{ inputs.output_formats }}
140+
output_path: ${{ inputs.output_path }}
141+
payload_path: ${{ inputs.payload_path }}
142+
queries: ${{ inputs.queries }}
143+
secrets_regexes_path: ${{ inputs.secrets_regexes_path }}
144+
libraries_path: ${{ inputs.libraries_path }}
145+
disable_full_descriptions: ${{ inputs.disable_full_descriptions }}
146+
disable_secrets: ${{ inputs.disable_secrets }}
147+
type: ${{ inputs.type }}
148+
verbose: ${{ inputs.verbose }}
149+
include_queries: ${{ inputs.include_queries }}
150+
bom: ${{ inputs.bom }}
151+
cloud_provider: ${{ inputs.cloud_provider }}

0 commit comments

Comments
 (0)