OPSEXP-2913 Re-enable testing renditions for pre-release helm charts … #132
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: | |
pull_request: | |
branches: [master] | |
paths: | |
- 'docker-compose/**' | |
- 'helm/**' | |
- '.github/workflows/kics.yml' | |
push: | |
branches: [master] | |
paths: | |
- 'docker-compose/**' | |
- 'helm/**' | |
- '.github/workflows/kics.yml' | |
permissions: | |
security-events: write | |
jobs: | |
kics: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
- name: run kics Scan | |
uses: checkmarx/kics-github-action@530ac1f8efe6202b0f12c9a6e952597ae707b755 # v2.1.2 | |
with: | |
path: 'docker-compose,helm' | |
ignore_on_exit: results | |
output_path: report-dir/ | |
output_formats: 'sarif' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
enable_jobs_summary: true | |
platform_type: 'dockercompose,kubernetes' | |
disable_secrets: true | |
config_path: .github/kics.yml | |
- name: Upload SARIF file | |
uses: github/codeql-action/upload-sarif@e2b3eafc8d227b0241d48be5f425d47c2d750a13 # v3.26.10 | |
with: | |
sarif_file: report-dir/results.sarif |