Skip to content

Commit 17735e5

Browse files
committed
Upgrade go version to 1.17
Signed-off-by: Drew Zhang <[email protected]>
1 parent 9b5e6e6 commit 17735e5

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515

16-
- name: Set up Go 1.15
16+
- name: Set up Go 1.17
1717
uses: actions/setup-go@v2
1818
with:
19-
go-version: 1.15
19+
go-version: 1.17
2020
id: go
2121

2222
- name: Check out code into the Go module directory

go.mod

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/aws/amazon-kinesis-streams-for-fluent-bit
22

3-
go 1.12
3+
go 1.17
44

55
require (
66
github.com/aws/amazon-kinesis-firehose-for-fluent-bit v1.5.1
@@ -14,3 +14,15 @@ require (
1414
github.com/stretchr/testify v1.7.0
1515
google.golang.org/protobuf v1.27.1
1616
)
17+
18+
require (
19+
github.com/davecgh/go-spew v1.1.1 // indirect
20+
github.com/jmespath/go-jmespath v0.4.0 // indirect
21+
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
22+
github.com/modern-go/reflect2 v1.0.2 // indirect
23+
github.com/pkg/errors v0.9.1 // indirect
24+
github.com/pmezard/go-difflib v1.0.0 // indirect
25+
github.com/ugorji/go/codec v1.1.7 // indirect
26+
golang.org/x/sys v0.0.0-20210423082822-04245dca01da // indirect
27+
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
28+
)

0 commit comments

Comments
 (0)