Skip to content

fix(helm): update chart trivy-operator to 0.32.1 #1186

fix(helm): update chart trivy-operator to 0.32.1

fix(helm): update chart trivy-operator to 0.32.1 #1186

Workflow file for this run

---
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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Mkdir myResults
run: mkdir -p myResults
- name: run kics Scan
uses: Checkmarx/kics-github-action@05aa5eb70eede1355220f4ca5238d96b397e30a6 # v2.1.20
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@0d579ffd059c29b07949a3cce3983f0780820c98 # v4
with:
sarif_file: myResults/results.sarif