gomod(deps): bump github.com/docker/cli from 29.1.2+incompatible to 29.1.3+incompatible in the docker group #684
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 }} |