build(deps): bump google.golang.org/grpc from 1.50.1 to 1.62.0 #800
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: | |
- master | |
pull_request: | |
jobs: | |
golangci: | |
# We need to run the linter on the same image we use for building, since it | |
# needs the C libraries installed for the dependencies to typecheck. | |
runs-on: ubuntu-latest | |
container: tendermintdev/docker-tm-db-testing | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: golangci/[email protected] | |
with: | |
args: --timeout 10m | |
github-token: ${{ secrets.github_token }} |