gomod(deps): bump istio.io/client-go from 1.28.0-alpha.0.0.20251117135800-816e95cb1f4d to 1.29.0 #729
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: verify | |
| on: | |
| pull_request_target: | |
| types: [ opened, edited, synchronize, reopened, ready_for_review ] | |
| permissions: | |
| # Permission to post comments on pull requests | |
| pull-requests: write | |
| jobs: | |
| standards: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| ref: ${{ github.event.pull_request.head.ref }} | |
| repository: ${{ github.event.pull_request.head.repo.full_name }} | |
| - uses: ./.github/actions/setup-go | |
| - name: Comment PR on violated standards | |
| if: always() | |
| uses: ./.github/actions/verify-standards-violation | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} |