| 123456789101112131415161718192021222324252627282930 |
- name: Zizmor CI
- on:
- push:
- branches: [ edge ]
- pull_request:
- branches: [ edge ]
- permissions: {}
- concurrency:
- group: zizmor-${{ github.ref }}
- cancel-in-progress: true
- jobs:
- zizmor:
- name: zizmor
- runs-on: ubuntu-26.04
- permissions:
- security-events: write # So that the findings can be listed in the "Security" tab under the "Code scanning" section
- steps:
- - name: Checkout repository
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- with:
- persist-credentials: false
- - name: Run zizmor 🌈
- uses: zizmorcore/zizmor-action@3dc1ecc9bcb9e94e9b2c709687979e1298497054 # v0.6.2
- with:
- persona: pedantic # https://docs.zizmor.sh/usage/#using-personas
|