-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update federacy/scan-action to v0.1.5 and add Salus config
- Loading branch information
1 parent
86f4080
commit 976a07e
Showing
2 changed files
with
29 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
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,28 @@ | ||
# https://github.com/coinbase/salus/blob/master/docs/configuration.md | ||
|
||
# Used in the report to identify the project being scanned. | ||
project_name: Doppler Kubernetes Operator | ||
|
||
# Defines where to send Salus reports and in what format. | ||
reports: | ||
- uri: file://salus-report.txt | ||
format: txt | ||
|
||
# All scanners to execute, or the String value "all"/"none" | ||
active_scanners: | ||
- Gosec | ||
- PatternSearch | ||
- RepoNotEmpty | ||
- GoOSV | ||
- GoVersionScanner | ||
- GoPackageScanner | ||
- ReportGoDep | ||
- Trufflehog | ||
|
||
# All scanners that will exit non-zero if they fail, or the String value "all"/"none" | ||
enforced_scanners: "all" | ||
|
||
scanner_configs: | ||
GoVersionScanner: | ||
error: | ||
min_version: '1.22.0' |