Skip to content

Bump google.golang.org/grpc from 1.59.0 to 1.63.2 #2114

Bump google.golang.org/grpc from 1.59.0 to 1.63.2

Bump google.golang.org/grpc from 1.59.0 to 1.63.2 #2114

Workflow file for this run

name: Code Analysis
on:
pull_request:
branches:
- main
paths:
- "**/*.go"
- "go.mod"
- "go.sum"
- ".github/workflows/code.analysis.yml"
env:
GO_VERSION: "1.21"
jobs:
analysis:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Revive Action
uses: morphy2k/[email protected]
- name: Check formatting
run: test -z $(gofmt -l .) || (gofmt -l . && exit 1)
- name: misspell
uses: sobolevn/[email protected]