OPSEXP-2976 Keycloak to v25 in acs-sso-example chart #213
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: run kics Scan | |
uses: checkmarx/kics-github-action@94469746ec2c43de89a42fb9d2a80070f5d25b16 # v2.1.3 | |
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@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3.27.5 | |
with: | |
sarif_file: report-dir/results.sarif |