β¬οΈπ¨βπ» Update pypa/gh-action-pypi-publish digest to dc37677 #24
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: π β’ Zizmor | |
| on: | |
| push: | |
| branches: ["main"] | |
| paths: | |
| - ".github/workflows/**" | |
| pull_request: | |
| branches: ["main"] | |
| paths: | |
| - ".github/workflows/**" | |
| merge_group: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| permissions: {} | |
| jobs: | |
| zizmor: | |
| name: π Zizmor | |
| # zizmor-action shells out to Docker, which ubuntu-slim's unprivileged container does not support | |
| runs-on: ubuntu-latest | |
| permissions: | |
| security-events: write # required to upload results to the code scanning API | |
| steps: | |
| - name: Clone Repository | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Run zizmor π | |
| uses: zizmorcore/zizmor-action@6fc4b006235f201fdab3722e17240ab420d580e5 # v0.6.1 | |
| with: | |
| persona: pedantic | |
| # fork PRs get a read-only GITHUB_TOKEN and cannot upload SARIF to code scanning | |
| advanced-security: ${{ !(github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork) }} |