-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
this commit adding kubesec github action ci check Signed-off-by: subhamkrai <[email protected]>
- Loading branch information
1 parent
5b92fc6
commit 1fe0eac
Showing
2 changed files
with
13 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
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 |
---|---|---|
|
@@ -74,3 +74,16 @@ jobs: | |
go-version-file: go.mod | ||
- name: govulncheck | ||
uses: golang/govulncheck-action@v1 | ||
|
||
kubsec: | ||
name: kubsec | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 1 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version-file: go.mod | ||
- name: Run kubesec scanner | ||
uses: controlplaneio/[email protected] |