Skip to content

feat(github-action)!: Update renovatebot/github-action action to v46.0.0 #1105

feat(github-action)!: Update renovatebot/github-action action to v46.0.0

feat(github-action)!: Update renovatebot/github-action action to v46.0.0 #1105

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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 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@b20883b0cd1f46c72ae0ba6d1090936928f9fa30 # v4
with:
sarif_file: myResults/results.sarif