build(deps): Bump google.golang.org/grpc from 1.62.1 to 1.63.0 (#1513)

* build(deps): Bump google.golang.org/grpc from 1.62.1 to 1.63.0

Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.62.1 to 1.63.0.
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](https://github.com/grpc/grpc-go/compare/v1.62.1...v1.63.0)

---
updated-dependencies:
- dependency-name: google.golang.org/grpc
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* gRPC: Update DialContext to NewClient after deprecation

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Adrian Gallagher <adrian.gallagher@thrasher.io>
This commit is contained in:
dependabot[bot]
2024-04-10 13:20:39 +10:00
committed by GitHub
parent 5b2251b9d7
commit 98eae1e0ce
4 changed files with 20 additions and 25 deletions

View File

@@ -67,7 +67,7 @@ func setupClient(c *cli.Context) (*grpc.ClientConn, context.CancelFunc, error) {
if verbose {
c.Context = metadata.AppendToOutgoingContext(c.Context, "verbose", "true")
}
conn, err := grpc.DialContext(c.Context, host, opts...)
conn, err := grpc.NewClient(host, opts...)
return conn, cancel, err
}