Skip to content

Bump buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go from 1.36.1-20241127180247-a33202765966.1 to 1.36.2-20241127180247-a33202765966.1 #410

Bump buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go from 1.36.1-20241127180247-a33202765966.1 to 1.36.2-20241127180247-a33202765966.1

Bump buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go from 1.36.1-20241127180247-a33202765966.1 to 1.36.2-20241127180247-a33202765966.1 #410

Workflow file for this run

name: ci
on:
push:
branches: [main]
tags: ['v*']
pull_request:
branches: [main]
schedule:
- cron: '15 22 * * *'
workflow_dispatch: {} # support manual runs
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.23.x'
- name: Test
run: make test
- name: Lint
# Often, lint & gofmt guidelines depend on the Go version. To prevent
# conflicting guidance, run only on the most recent supported version.
# For the same reason, only check generated code on the most recent
# supported version.
run: make checkgenerate && make lint