Bump httpx2 from 2.10.0 to 2.12.0 #5
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: Claude Review | |
| on: | |
| pull_request: | |
| types: [opened, ready_for_review, reopened] | |
| jobs: | |
| claude-review: | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| issues: read | |
| id-token: write # reusable's claude-code-action OIDC exchange; caller must grant (org default is read-only) | |
| # Dependabot-triggered runs cannot grant the called workflow's | |
| # `id-token: write` permission, which fails the run at startup before the | |
| # reusable workflow's own Dependabot guard can evaluate. Skip the call. | |
| if: github.actor != 'dependabot[bot]' | |
| uses: PSD401/.github/.github/workflows/reusable-claude-review.yml@main | |
| secrets: inherit |