Skip to content

Commit 464408c

Browse files
authored
go: upgrade to go 1.18 (#5)
1 parent 671543e commit 464408c

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

.github/workflows/test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ jobs:
1111
steps:
1212
- uses: actions/setup-go@v2
1313
with:
14-
go-version: 1.17.x
14+
go-version: 1.18.x
1515
- uses: actions/checkout@v2
1616
- run: make test

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.vscode/

go.mod

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/pomerium/enterprise-client-go
22

3-
go 1.16
3+
go 1.18
44

55
require (
66
github.com/envoyproxy/go-control-plane v0.9.9
@@ -10,3 +10,14 @@ require (
1010
google.golang.org/grpc v1.40.0
1111
google.golang.org/protobuf v1.27.1
1212
)
13+
14+
require (
15+
github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed // indirect
16+
github.com/davecgh/go-spew v1.1.0 // indirect
17+
github.com/pmezard/go-difflib v1.0.0 // indirect
18+
golang.org/x/net v0.0.0-20200822124328-c89045814202 // indirect
19+
golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd // indirect
20+
golang.org/x/text v0.3.3 // indirect
21+
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
22+
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
23+
)

0 commit comments

Comments
 (0)