deps: update module google.golang.org/grpc to v1.67.1 #442
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
name: Lint | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- uses: golangci/golangci-lint-action@v6 | |
with: | |
version: v1.60.3 # renovate: datasource=github-releases depName=golangci/golangci-lint | |
# In general linting is quite fast with warm caches, but a fresh run might | |
# take some time. | |
args: --timeout 5m |