chore(deps): update go patches #12546
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
| # Copyright AGNTCY Contributors (https://github.com/agntcy) | |
| # SPDX-License-Identifier: Apache-2.0 | |
| name: Buf CI | |
| on: | |
| push: | |
| delete: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - labeled | |
| - unlabeled | |
| paths: | |
| # Only run proto checks when proto-relevant files change (skip docs-only PRs). | |
| - "**.proto" | |
| - "**/buf.yaml" | |
| - "**/buf.lock" | |
| - "**/buf.md" | |
| - "**/README.md" | |
| - "**/LICENSE" | |
| - ".github/workflows/buf-ci.yaml" | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| verify-proto: | |
| name: Verify Proto API | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0 | |
| with: | |
| fetch-depth: 0 | |
| - name: Verify | |
| uses: bufbuild/buf-action@8c6a16e16f12ba20b6470afa9c2ba9b5ba8c97c3 # v1.5.0 | |
| with: | |
| token: ${{ secrets.BUF_TOKEN }} | |
| input: proto/ | |
| format: false | |
| lint: false |