chore: enable python 3.14 #128
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: "Validate GitHub Actions" | |
| on: | |
| pull_request: | |
| paths: | |
| - '.github/workflows/**' | |
| - '.github/actions/**' | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - '.github/workflows/**' | |
| - '.github/actions/**' | |
| permissions: | |
| contents: read | |
| jobs: | |
| zizmor: | |
| name: "Lint" | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| security-events: write # for uploading SARIF results | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: "Run zizmor" | |
| uses: zizmorcore/zizmor-action@135698455da5c3b3e55f73f4419e481ab68cdd95 # v0.4.1 | |
| with: | |
| config: .github/zizmor.yml | |
| # Disable SARIF upload so the step is a simple pass/fail gate | |
| advanced-security: false | |
| inputs: .github |