chore(deps): Bump github.com/golangci/golangci-lint from 1.48.0 to 1.60.1 #85
Workflow file for this run
This file contains 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
# Verify that generated code is up-to-date. | |
# | |
# Note that we run these checks regardless whether the input files have | |
# changed, because generated code can change in response to toolchain updates | |
# even if no files in the repository are modified. | |
name: Check generated code | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- '*' | |
permissions: | |
contents: read | |
jobs: | |
check-proto: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: '1.18' | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 # we need a .git directory to run git diff | |
- name: "Check protobuf generated code" | |
run: contrib/scripts/check-generated.sh |