cruise-automation / daytona

A Vault client, but for containers and servers.
Apache License 2.0
310 stars 33 forks source link

Update google cloud dep to v0.40.0 #10

Closed ryboe closed 5 years ago

ryboe commented 5 years ago

The old versions of cloud.google.com/go and google.golang.org/api contain a problematic import of github.com/golang/lint instead of the correct golang.org/x/lint. This created some problems for GULP, since we're vendoring and building daytona ourselves. The fix is just to update the dependencies.

These changes can be reproduced with the following commands:

cd cruise-automation/daytona
GO111MODULE=on go get cloud.google.com/go@v0.40.0
GO111MODULE=on go mod tidy
GO111MODULE=on go mod vendor

Updating cloud.google.com/go updates google.golang.org/api automatically`.

This is branched off #9. Merge that first.