chore(deps): update github/codeql-action digest to 8960790 #267
Workflow file for this run
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: Security (Helm) | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
types: [opened, synchronize] | |
paths: | |
- .github/workflows/security.helm.yml | |
- charts/** | |
jobs: | |
# Analyze statically Helm charts to identify any policy violations. | |
checkov: | |
name: Checkov | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 | |
- uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0 | |
with: | |
python-version: '3.8' | |
check-latest: true | |
- uses: bridgecrewio/checkov-action@a6b06158ca30c135b38291f4fa0da67d188ca8f4 | |
with: | |
directory: charts/gitlab-ci-runner-exporter | |
framework: helm | |
skip_check: CKV_K8S_11,CKV_K8S_15,CKV_K8S_21,CKV_K8S_35,CKV_K8S_43 | |
- uses: github/codeql-action/upload-sarif@58ff74adc38e087ca7f6670dfe24cd319aea5f11 # tag=codeql-bundle-20221211 | |
if: always() | |
with: | |
category: checkov-helm | |
sarif_file: results.sarif |