forked from DeepSourceCorp/helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
590b445
commit 1fbca33
Showing
2 changed files
with
51 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,4 +1,7 @@ | ||
version = 1 | ||
|
||
[[analyzers]] | ||
name = "secrets" | ||
name = "secrets" | ||
|
||
[[analyzers]] | ||
name = "kube-linter" |
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Scan with kube-linter | ||
|
||
on: | ||
# Note that both `push` and `pull_request` triggers should be present for GitHub to consistently present kube-linter | ||
# SARIF reports. | ||
push: | ||
branches: [ main, master ] | ||
pull_request: | ||
|
||
jobs: | ||
scan: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
|
||
- name: Scan files with kube-linter | ||
uses: stackrox/[email protected] | ||
id: kube-linter-action-scan | ||
with: | ||
# Adjust this directory to the location where your kubernetes resources and helm charts are located. | ||
directory: . | ||
# Adjust this to the location of kube-linter config you're using, or remove the setting if you'd like to use | ||
# the default config. | ||
# config: sample/.kube-linter-config.yaml | ||
# The following two settings make kube-linter produce scan analysis in SARIF format | ||
format: sarif | ||
output-file: ./kube-linter.sarif | ||
# The following line prevents aborting the workflow immediately in case your files fail kube-linter checks. | ||
# This allows the following upload-sarif action to still upload the results. | ||
continue-on-error: true | ||
|
||
- name: Upload SARIF report files to DeepSource | ||
run: | | ||
# Install the CLI | ||
curl https://deepsource.io/cli | sh | ||
# Send the report to DeepSource | ||
./bin/deepsource report --analyzer kube-linter --value-file ./kube-linter.sarif | ||
# Ensure the workflow eventually fails if files did not pass kube-linter checks. | ||
- name: Verify kube-linter-action succeeded | ||
shell: bash | ||
run: | | ||
echo "If this step fails, kube-linter found issues. Check the output of the scan step above." | ||
[[ "${{ steps.kube-linter-action-scan.outcome }}" == "success" ]] |