chore(deps): update pyo3/maturin-action digest to 36db840 (#176) #254
This file contains 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 CI workflows | |
on: | |
pull_request: | |
paths: [.github/workflows/*] | |
push: | |
branches: [main] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
env: | |
# renovate: datasource=pypi depName=uv | |
UV_VERSION: '0.6.3' | |
# renovate: datasource=pypi depName=zizmor | |
ZIZMOR_VERSION: '1.4.1' | |
permissions: {} | |
jobs: | |
validate-ci-workflows: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
persist-credentials: false | |
- name: Install uv | |
uses: astral-sh/setup-uv@f94ec6bedd8674c4426838e6b50417d36b6ab231 # v5 | |
with: | |
version: ${{ env.UV_VERSION }} | |
- name: Run zizmor | |
run: uvx zizmor@${ZIZMOR_VERSION} . | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |