Skip to content

Commit d780290

Browse files
authored
Merge pull request #63 from hellofresh/patch/go-1.17
Use the latest stable golang for the new version
2 parents 24c1571 + 9d50b0f commit d780290

File tree

3 files changed

+24
-6
lines changed

3 files changed

+24
-6
lines changed

.github/workflows/testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Set up Go
4141
uses: actions/setup-go@v2
4242
with:
43-
go-version: ^1.16
43+
go-version: ^1.17
4444
- name: Check out code
4545
uses: actions/checkout@v2
4646
- name: Run tests

go.mod

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/hellofresh/goengine/v2
22

3-
go 1.16
3+
go 1.17
44

55
require (
66
github.com/DATA-DOG/go-sqlmock v1.5.0
@@ -12,8 +12,26 @@ require (
1212
github.com/sirupsen/logrus v1.8.1
1313
github.com/streadway/amqp v1.0.0
1414
github.com/stretchr/testify v1.7.0
15+
go.uber.org/zap v1.19.0
16+
)
17+
18+
require (
19+
github.com/beorn7/perks v1.0.1 // indirect
20+
github.com/cespare/xxhash/v2 v2.1.1 // indirect
21+
github.com/davecgh/go-spew v1.1.1 // indirect
22+
github.com/golang/protobuf v1.4.3 // indirect
23+
github.com/josharian/intern v1.0.0 // indirect
24+
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
25+
github.com/pmezard/go-difflib v1.0.0 // indirect
26+
github.com/prometheus/client_model v0.2.0 // indirect
27+
github.com/prometheus/common v0.26.0 // indirect
28+
github.com/prometheus/procfs v0.6.0 // indirect
1529
go.uber.org/atomic v1.9.0 // indirect
1630
go.uber.org/multierr v1.7.0 // indirect
17-
go.uber.org/zap v1.19.0
18-
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf // indirect
31+
golang.org/x/mod v0.4.2 // indirect
32+
golang.org/x/sys v0.0.0-20210910150752-751e447fb3d0 // indirect
33+
golang.org/x/tools v0.1.1 // indirect
34+
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
35+
google.golang.org/protobuf v1.26.0-rc.1 // indirect
36+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
1937
)

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,8 @@ golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7w
163163
golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
164164
golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
165165
golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
166-
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf h1:2ucpDCmfkl8Bd/FsLtiD653Wf96cW37s+iGx93zsu4k=
167-
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
166+
golang.org/x/sys v0.0.0-20210910150752-751e447fb3d0 h1:xrCZDmdtoloIiooiA9q0OQb9r8HejIHYoHGhGCe1pGg=
167+
golang.org/x/sys v0.0.0-20210910150752-751e447fb3d0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
168168
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
169169
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
170170
golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=

0 commit comments

Comments
 (0)