Update build process for RPM packages in workflow #32
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: GitHub Actions Security Scan | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - '.github/workflows/*.yml' | |
| - '.github/workflows/*.yaml' | |
| pull_request: | |
| paths: | |
| - '.github/workflows/*.yml' | |
| - '.github/workflows/*.yaml' | |
| workflow_dispatch: | |
| schedule: | |
| # Run weekly on Mondays at 9:00 UTC | |
| - cron: '0 9 * * 1' | |
| permissions: {} | |
| jobs: | |
| zizmor: | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| security-events: write | |
| contents: read | |
| actions: read | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| with: | |
| persist-credentials: false | |
| - name: Run zizmor security analysis | |
| uses: zizmorcore/zizmor-action@e639db99335bc9038abc0e066dfcd72e23d26fb4 # v0.3.0 | |
| with: | |
| inputs: .github/workflows/ | |
| advanced-security: false | |
| annotations: true | |
| min-severity: high |