chore(deps): update helmrelease to helm.toolkit.fluxcd.io/v2 #725
Workflow file for this run
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.2 | |
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@429e1977040da7a23b6822b13c129cd1ba93dbb2 # v3 | |
with: | |
sarif_file: myResults/results.sarif |