chore(deps): update module github.com/vektra/mockery/v3 to v3.7.3 #225
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: Code Review | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, labeled, unlabeled] | |
| pull_request_target: | |
| types: [opened, synchronize] | |
| jobs: | |
| review: | |
| # May also trigger on dependabot/renovate branches when a human updates them (acceptable double-review). | |
| if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && github.actor != 'scality-renovate[bot]' | |
| uses: scality/workflows/.github/workflows/claude-code-review.yml@7d91dc4ebbe136b54518aa42a1ad6014f8f91526 # v2.9.1 | |
| secrets: | |
| GCP_WORKLOAD_IDENTITY_PROVIDER: ${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }} | |
| GCP_SERVICE_ACCOUNT: ${{ secrets.GCP_SERVICE_ACCOUNT }} | |
| ANTHROPIC_VERTEX_PROJECT_ID: ${{ secrets.ANTHROPIC_VERTEX_PROJECT_ID }} | |
| CLOUD_ML_REGION: ${{ secrets.CLOUD_ML_REGION }} | |
| review-dependency-bump: | |
| # pr.user.login catches bot PRs updated by a human, where github.actor is no longer the bot. | |
| if: >- | |
| github.event_name == 'pull_request_target' && | |
| (github.actor == 'dependabot[bot]' || github.actor == 'scality-renovate[bot]' || | |
| github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.user.login == 'scality-renovate[bot]') | |
| uses: scality/workflows/.github/workflows/claude-code-dependency-review.yml@7d91dc4ebbe136b54518aa42a1ad6014f8f91526 # v2.9.1 | |
| with: | |
| ACTIONS_APP_ID: ${{ vars.ACTIONS_APP_ID }} | |
| secrets: | |
| GCP_WORKLOAD_IDENTITY_PROVIDER: ${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }} | |
| GCP_SERVICE_ACCOUNT: ${{ secrets.GCP_SERVICE_ACCOUNT }} | |
| ANTHROPIC_VERTEX_PROJECT_ID: ${{ secrets.ANTHROPIC_VERTEX_PROJECT_ID }} | |
| CLOUD_ML_REGION: ${{ secrets.CLOUD_ML_REGION }} | |
| ACTIONS_APP_PRIVATE_KEY: ${{ secrets.ACTIONS_APP_PRIVATE_KEY }} |