Skip to content

fix(deps): update google.golang.org/genproto/googleapis/api digest to 6f92a3b #2196

fix(deps): update google.golang.org/genproto/googleapis/api digest to 6f92a3b

fix(deps): update google.golang.org/genproto/googleapis/api digest to 6f92a3b #2196

Workflow file for this run

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)