feat(helm): update chart cert-manager to v1.16.0 #763
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
--- | |
name: KICS | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
name: KICS | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Mkdir myResults | |
run: mkdir -p myResults | |
- name: run kics Scan | |
uses: Checkmarx/kics-github-action@530ac1f8efe6202b0f12c9a6e952597ae707b755 # v2.1.3 | |
with: | |
path: cluster | |
output_path: myResults/ | |
output_formats: 'json,sarif' | |
ignore_on_exit: results | |
token: ${{ github.token }} | |
enable_comments: true | |
- name: Show results | |
run: | | |
cat myResults/results.sarif | |
cat myResults/results.json | |
- name: Upload SARIF file | |
uses: github/codeql-action/upload-sarif@e2b3eafc8d227b0241d48be5f425d47c2d750a13 # v3 | |
with: | |
sarif_file: myResults/results.sarif |