Skip to content

Bump github/codeql-action from 3.29.7 to 3.30.0 #35

Bump github/codeql-action from 3.29.7 to 3.30.0

Bump github/codeql-action from 3.29.7 to 3.30.0 #35

Workflow file for this run

---
name: KICS Security Scan
on:
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
pull_request:
push:
branches:
- 'main'
- 'netways'
merge_group:
schedule:
- cron: '15 6 * * 4'
jobs:
kics:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Mkdir results-dir
# make sure results dir is created
run: mkdir -p results-dir
- name: run kics Scan
uses: Checkmarx/kics-github-action@cd1f3774406f7818e3f79b77b093fe2ebaaf5c1d #v2.1.12
with:
# path: 'roles,plugins'
path: '.'
fail_on: high
ignore_on_exit: results
output_formats: 'json,sarif'
output_path: results-dir
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@2d92b76c45b91eb80fc44c74ce3fce0ee94e8f9d #v3.29.5
with:
sarif_file: results-dir/results.sarif