Skip to content

feat(helm): update chart trivy-operator to 0.32.0 #1135

feat(helm): update chart trivy-operator to 0.32.0

feat(helm): update chart trivy-operator to 0.32.0 #1135

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@00def9108246ec656aea725db2167522d26a99d2 # v2.1.19
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@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2 # v4
with:
sarif_file: myResults/results.sarif