Skip to content

Commit e9e7b3f

Browse files
authored
Merge pull request #73 from NETWAYS/bump-go-version
Bump go Version to 1.19
2 parents 055ea60 + fb65c67 commit e9e7b3f

File tree

3 files changed

+28
-932
lines changed

3 files changed

+28
-932
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Go
2020
uses: actions/setup-go@v2
2121
with:
22-
go-version: 1.16
22+
go-version: 1.19
2323

2424
- name: Test
2525
run: go test -v ./...

go.mod

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,39 @@
11
module check_cloud_gcp
22

3-
go 1.16
3+
go 1.19
44

55
require (
66
github.com/NETWAYS/go-check v0.3.0
7-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
87
github.com/jarcoal/httpmock v1.2.0
9-
github.com/kr/pretty v0.2.0 // indirect
108
github.com/spf13/cobra v1.6.1
119
github.com/stretchr/testify v1.8.1
1210
golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783
1311
google.golang.org/api v0.105.0
12+
)
13+
14+
require (
15+
cloud.google.com/go/compute v1.13.0 // indirect
16+
cloud.google.com/go/compute/metadata v0.2.2 // indirect
17+
github.com/davecgh/go-spew v1.1.1 // indirect
18+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
19+
github.com/golang/protobuf v1.5.2 // indirect
20+
github.com/google/uuid v1.3.0 // indirect
21+
github.com/googleapis/enterprise-certificate-proxy v0.2.0 // indirect
22+
github.com/googleapis/gax-go/v2 v2.7.0 // indirect
23+
github.com/inconshreveable/mousetrap v1.0.1 // indirect
24+
github.com/kr/pretty v0.2.0 // indirect
25+
github.com/mitchellh/go-ps v1.0.0 // indirect
26+
github.com/pmezard/go-difflib v1.0.0 // indirect
27+
github.com/sirupsen/logrus v1.8.1 // indirect
28+
github.com/spf13/pflag v1.0.5 // indirect
29+
go.opencensus.io v0.24.0 // indirect
30+
golang.org/x/net v0.0.0-20221014081412-f15817d10f9b // indirect
31+
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect
32+
golang.org/x/text v0.5.0 // indirect
33+
google.golang.org/appengine v1.6.7 // indirect
34+
google.golang.org/genproto v0.0.0-20221206210731-b1a01be3a5f6 // indirect
35+
google.golang.org/grpc v1.51.0 // indirect
36+
google.golang.org/protobuf v1.28.1 // indirect
1437
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
38+
gopkg.in/yaml.v3 v3.0.1 // indirect
1539
)

0 commit comments

Comments
 (0)