chore(deps): bump astral-sh/setup-uv from 8.0.0 to 8.1.0 in the actio… #12
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: "Copilot Setup Steps" | |
| permissions: {} | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - .github/workflows/copilot-setup-steps.yml | |
| pull_request: | |
| paths: | |
| - .github/workflows/copilot-setup-steps.yml | |
| jobs: | |
| copilot-setup-steps: | |
| name: Copilot Setup Steps | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.x" | |
| allow-prereleases: true | |
| - uses: astral-sh/setup-uv@v8.1.0 | |
| - name: Install tooling | |
| run: | | |
| uv tool install nox | |
| uv tool install prek | |
| - name: Pre-install checks | |
| run: | | |
| prek prepare-hooks |