⬆️ rats dep-bump(deps-dev): Update uv-build requirement from <0.10.0,>=0.9.2 to >=0.9.2,<0.11.0 in /rats in the package-dependencies group #1082
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: PR | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| permissions: | |
| contents: read | |
| actions: read | |
| id-token: write | |
| pages: write | |
| security-events: write | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| checks: | |
| uses: ./.github/workflows/checks.yaml | |
| secrets: inherit | |
| with: | |
| sha: ${{ github.sha }} | |
| build-wheels: | |
| uses: ./.github/workflows/build-wheels.yaml | |
| secrets: inherit | |
| with: | |
| sha: ${{ github.sha }} | |
| build-docs: | |
| uses: ./.github/workflows/build-docs.yaml | |
| secrets: inherit | |
| with: | |
| sha: ${{ github.sha }} | |
| codeql: | |
| uses: ./.github/workflows/codeql.yaml | |
| secrets: inherit | |
| with: | |
| sha: ${{ github.sha }} | |
| release: | |
| uses: ./.github/workflows/release.yaml | |
| secrets: inherit | |
| needs: | |
| - build-docs | |
| - build-wheels | |
| - checks | |
| - codeql | |
| with: | |
| sha: ${{ github.sha }} | |
| publish-docs: false | |
| publish-wheels: false |