forked from Checkmarx/kics
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update reference to KICS github action
Use kics-github-action instead of kics-action
- Loading branch information
1 parent
e8de947
commit 820a34f
Showing
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Run KICS Scan | ||
uses: checkmarx/[email protected] | ||
uses: checkmarx/kics-github-[email protected] | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
path: "./Dockerfile" | ||
|
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 |
---|---|---|
|
@@ -7,15 +7,15 @@ on: | |
jobs: | ||
kics-job: | ||
runs-on: ubuntu-latest | ||
name: kics-action | ||
name: kics-github-action | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v2 | ||
- name: Mkdir results-dir | ||
# make sure results dir is created | ||
run: mkdir -p results-dir | ||
- name: Run KICS Scan with SARIF result | ||
uses: checkmarx/[email protected] | ||
uses: checkmarx/kics-github-[email protected] | ||
with: | ||
# comma separated list of paths | ||
path: 'terraform,my-subdir,my-other-subdir/my-file.tf' | ||
|