Skip to content

Commit de0dc3c

Browse files
fix: upgrade minimum version to go 1.17
1 parent 6355696 commit de0dc3c

File tree

3 files changed

+59
-3
lines changed

3 files changed

+59
-3
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/setup-go@v3
1616
with:
17-
go-version: 1.16
17+
go-version: 1.17
1818

1919
- name: Configure git for private modules
2020
env:

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: true
1616
matrix:
17-
go-version: [1.16.x, 1.17.x, 1.18.x, 1.19.x]
17+
go-version: [1.17.x, 1.18.x, 1.19.x]
1818

1919
name: Tests - Go ${{ matrix.go-version }}
2020

go.mod

Lines changed: 57 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/speakeasy-api/speakeasy-go-sdk
22

3-
go 1.16
3+
go 1.17
44

55
require (
66
github.com/chromedp/cdproto v0.0.0-20220629234738-4cfc9cdeeb92
@@ -19,3 +19,59 @@ require (
1919
google.golang.org/grpc v1.48.0
2020
gopkg.in/DataDog/dd-trace-go.v1 v1.45.1
2121
)
22+
23+
require (
24+
github.com/DataDog/datadog-agent/pkg/obfuscate v0.0.0-20211129110424-6491aa3bf583 // indirect
25+
github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.42.0-rc.1 // indirect
26+
github.com/DataDog/datadog-go v4.8.2+incompatible // indirect
27+
github.com/DataDog/datadog-go/v5 v5.0.2 // indirect
28+
github.com/DataDog/go-tuf v0.3.0--fix-localmeta-fork // indirect
29+
github.com/DataDog/sketches-go v1.2.1 // indirect
30+
github.com/Microsoft/go-winio v0.5.1 // indirect
31+
github.com/cespare/xxhash/v2 v2.1.2 // indirect
32+
github.com/davecgh/go-spew v1.1.1 // indirect
33+
github.com/dgraph-io/ristretto v0.1.0 // indirect
34+
github.com/dustin/go-humanize v1.0.0 // indirect
35+
github.com/felixge/httpsnoop v1.0.1 // indirect
36+
github.com/gin-contrib/sse v0.1.0 // indirect
37+
github.com/go-playground/locales v0.14.0 // indirect
38+
github.com/go-playground/universal-translator v0.18.0 // indirect
39+
github.com/go-playground/validator/v10 v10.10.0 // indirect
40+
github.com/goccy/go-json v0.9.7 // indirect
41+
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
42+
github.com/golang/protobuf v1.5.2 // indirect
43+
github.com/google/uuid v1.3.0 // indirect
44+
github.com/josharian/intern v1.0.0 // indirect
45+
github.com/json-iterator/go v1.1.12 // indirect
46+
github.com/labstack/gommon v0.3.1 // indirect
47+
github.com/leodido/go-urn v1.2.1 // indirect
48+
github.com/mailru/easyjson v0.7.7 // indirect
49+
github.com/mattn/go-colorable v0.1.11 // indirect
50+
github.com/mattn/go-isatty v0.0.14 // indirect
51+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
52+
github.com/modern-go/reflect2 v1.0.2 // indirect
53+
github.com/pelletier/go-toml/v2 v2.0.1 // indirect
54+
github.com/philhofer/fwd v1.1.1 // indirect
55+
github.com/pkg/errors v0.9.1 // indirect
56+
github.com/pmezard/go-difflib v1.0.0 // indirect
57+
github.com/secure-systems-lab/go-securesystemslib v0.4.0 // indirect
58+
github.com/tinylib/msgp v1.1.6 // indirect
59+
github.com/ugorji/go/codec v1.2.7 // indirect
60+
github.com/valyala/bytebufferpool v1.0.0 // indirect
61+
github.com/valyala/fasttemplate v1.2.1 // indirect
62+
go.uber.org/atomic v1.7.0 // indirect
63+
go.uber.org/multierr v1.6.0 // indirect
64+
go4.org/intern v0.0.0-20211027215823-ae77deb06f29 // indirect
65+
go4.org/unsafe/assume-no-moving-gc v0.0.0-20220617031537-928513b29760 // indirect
66+
golang.org/x/crypto v0.0.0-20220214200702-86341886e292 // indirect
67+
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
68+
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
69+
golang.org/x/text v0.3.7 // indirect
70+
golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11 // indirect
71+
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
72+
google.golang.org/genproto v0.0.0-20200726014623-da3ae01ef02d // indirect
73+
google.golang.org/protobuf v1.28.1 // indirect
74+
gopkg.in/yaml.v2 v2.4.0 // indirect
75+
gopkg.in/yaml.v3 v3.0.1 // indirect
76+
inet.af/netaddr v0.0.0-20220617031823-097006376321 // indirect
77+
)

0 commit comments

Comments
 (0)