Skip to content

Commit

Permalink
Merge pull request #9 from groovenauts/features/update_golang_runtime…
Browse files Browse the repository at this point in the history
…_to_go120

Update go runtime and library versions
  • Loading branch information
nagachika authored Aug 25, 2023
2 parents a6c8e7a + 65e818e commit 2bf648d
Show file tree
Hide file tree
Showing 4 changed files with 179 additions and 50 deletions.
2 changes: 1 addition & 1 deletion app.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
runtime: go111
runtime: go120
env_variables:
GCLOUD_PROJECT: PROJCT-ID
PUBSUB_TOPIC: blocks-worker-logs
Expand Down
26 changes: 24 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
module github.com/groovenauts/magellan-log-collector

go 1.20

require (
golang.org/x/oauth2 v0.11.0
google.golang.org/api v0.136.0
)

require (
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
google.golang.org/api v0.15.0
cloud.google.com/go/compute v1.23.0 // indirect
cloud.google.com/go/compute/metadata v0.2.3 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/s2a-go v0.1.4 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.2.5 // indirect
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
go.opencensus.io v0.24.0 // indirect
golang.org/x/crypto v0.12.0 // indirect
golang.org/x/net v0.14.0 // indirect
golang.org/x/sys v0.11.0 // indirect
golang.org/x/text v0.12.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230807174057-1744710a1577 // indirect
google.golang.org/grpc v1.57.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
)
Loading

0 comments on commit 2bf648d

Please sign in to comment.