forked from cookpad/aws-falcon-data-forwarder
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from ubie-inc/go-1-17
go 1.17
- Loading branch information
Showing
3 changed files
with
254 additions
and
73 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.16 as go | ||
FROM golang:1.17 as go | ||
FROM gcr.io/distroless/base-debian10 as run | ||
|
||
FROM go as build | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,38 @@ | ||
module github.com/m-mizutani/aws-falcon-data-forwarder | ||
|
||
go 1.16 | ||
go 1.17 | ||
|
||
require ( | ||
cloud.google.com/go/storage v1.14.0 | ||
github.com/GoogleCloudPlatform/berglas v0.5.3 | ||
github.com/aws/aws-sdk-go v1.38.20 | ||
cloud.google.com/go v0.93.3 // indirect | ||
cloud.google.com/go/kms v0.1.0 // indirect | ||
cloud.google.com/go/secretmanager v0.1.0 // indirect | ||
cloud.google.com/go/storage v1.16.0 | ||
github.com/GoogleCloudPlatform/berglas v0.6.0 | ||
github.com/aws/aws-sdk-go v1.40.33 | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/gammazero/deque v0.1.0 // indirect | ||
github.com/gammazero/workerpool v1.1.2 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/go-cmp v0.5.6 // indirect | ||
github.com/googleapis/gax-go/v2 v2.1.0 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/magefile/mage v1.11.0 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/sethvargo/go-retry v0.1.0 // indirect | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/stretchr/testify v1.7.0 | ||
golang.org/x/net v0.0.0-20210414194228-064579744ee0 // indirect | ||
go.opencensus.io v0.23.0 // indirect | ||
golang.org/x/net v0.0.0-20210825183410-e898025ed96a // indirect | ||
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f // indirect | ||
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
google.golang.org/api v0.55.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto v0.0.0-20210831024726-fe130286e0e2 // indirect | ||
google.golang.org/grpc v1.40.0 // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
) |
Oops, something went wrong.