chore(deps): update dependency uv to v0.8.10 #600
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: 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.8.10' | |
# renovate: datasource=pypi depName=zizmor | |
ZIZMOR_VERSION: '1.12.0' | |
permissions: {} | |
jobs: | |
validate-ci-workflows: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 | |
with: | |
persist-credentials: false | |
- name: Install uv | |
uses: astral-sh/setup-uv@d9e0f98d3fc6adb07d1e3d37f3043649ddad06a1 # v6 | |
with: | |
version: ${{ env.UV_VERSION }} | |
- name: Run zizmor | |
run: uvx zizmor@${ZIZMOR_VERSION} . | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |