feat(#10559): add zizmor static analysis for GitHub Actions CI security #182
Workflow file for this run
This file contains hidden or 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: Helm Template Validation | |
| on: | |
| push: | |
| paths: | |
| - 'scripts/build/helm/**' | |
| - '.github/workflows/helm-validation.yml' | |
| pull_request: | |
| paths: | |
| - 'scripts/build/helm/**' | |
| - '.github/workflows/helm-validation.yml' | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate-helm-templates: | |
| name: Validate Helm Templates | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| with: | |
| persist-credentials: false | |
| - name: Setup Helm | |
| uses: azure/setup-helm@b7246b12e77f7134dc2d460a3d5bad15bbe29390 # v4.1.0 | |
| - name: Validate Helm Templates | |
| working-directory: scripts/build/helm | |
| run: | | |
| echo "Running Helm template validation..." | |
| ./validate-templates.sh |