fix(deps): update google.golang.org/genproto/googleapis/api digest to 18b4a75 #2902
Workflow file for this run
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: Proto | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "sdk/**" | |
| - "rpc/**" | |
| pull_request: | |
| paths: | |
| - "sdk/**" | |
| - "rpc/**" | |
| jobs: | |
| proto-lint: | |
| name: "Lint Protos" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: bufbuild/buf-setup-action@v1.50.0 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: bufbuild/buf-lint-action@v1 | |
| with: | |
| input: "rpc/flipt" | |
| - uses: bufbuild/buf-breaking-action@v1 | |
| with: | |
| input: "rpc/flipt" | |
| against: "https://github.com/${GITHUB_REPOSITORY}.git#branch=main" | |
| proto-check: | |
| name: "Check Generated Code" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ./.github/actions/setup | |
| - uses: bufbuild/buf-setup-action@v1.50.0 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: jdx/mise-action@v3 | |
| with: | |
| args: proto | |
| - name: Ensure clean git state. | |
| run: git diff --quiet --exit-code sdk/ rpc/ || (echo "Please run 'mise proto' and commit changes." && exit 1) |