GDB-9036: Added CI workflow #10
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: Continuous Integration | |
on: | |
pull_request: | |
push: | |
branches: [ "master" ] | |
jobs: | |
analyze: | |
name: Analyze the Helm chart | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 5 | |
# TODO Permissions for trivy sarif | |
steps: | |
- id: checkout_repository | |
name: Checkout repository | |
# actions/checkout@v4.1.1 | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: setup_helm | |
name: Setup Helm | |
# azure/setup-helm@v3.5 | |
uses: azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78 | |
with: | |
version: v3.14.0 | |
- id: run_helm_lint | |
name: Run Helm lint | |
run: helm lint --strict . | |
- id: run_trivy_config | |
name: Run Trivy vulnerability scanner | |
# aquasecurity/trivy-action@v0.16.1 | |
uses: aquasecurity/trivy-action@d43c1f16c00cfd3978dde6c07f4bbcf9eb6993ca | |
with: | |
scan-type: config | |
trivy-config: trivy.yaml | |
hide-progress: false | |
format: sarif | |
output: trivy.sarif | |
# TODO: Lint/trivy for examples/ folder ??????? |