Bump astral-sh/setup-uv from 7.2.0 to 7.2.1 in the github-actions group #354
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: autofix.ci | |
| on: | |
| workflow_call: | |
| pull_request: | |
| push: | |
| branches: [ "main" ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| autofix: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| # Use uv to ensure we have the same ruff version in CI and locally. | |
| - uses: astral-sh/setup-uv@803947b9bd8e9f986429fa0c5a41c367cd732b41 | |
| with: | |
| version: "0.4.20" | |
| # Fix lint errors | |
| - run: uv run ruff check --fix-only . | |
| # Format code | |
| - run: uv run ruff format . | |
| - uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27 |