File tree Expand file tree Collapse file tree 5 files changed +24
-7
lines changed Expand file tree Collapse file tree 5 files changed +24
-7
lines changed Original file line number Diff line number Diff line change @@ -5,14 +5,14 @@ name: default
5
5
6
6
steps :
7
7
- name : check
8
- image : golang:1.16.2
8
+ image : golang:1.18.6
9
9
commands :
10
10
- make check
11
11
volumes :
12
12
- name : gopath
13
13
path : /go
14
14
- name : test
15
- image : golang:1.16.2
15
+ image : golang:1.18.6
16
16
commands :
17
17
- make test
18
18
volumes :
Original file line number Diff line number Diff line change 18
18
- name : Set up Go
19
19
uses : actions/setup-go@v2
20
20
with :
21
- go-version : 1.16.2
21
+ go-version : 1.18.6
22
22
23
23
- name : Check
24
24
run : make check
Original file line number Diff line number Diff line change 1
- FROM golang:1.16 -alpine as builder
1
+ FROM golang:1.18.6 -alpine as builder
2
2
RUN apk update && apk add --no-cache make gcc musl-dev git ca-certificates && update-ca-certificates
3
3
WORKDIR /app
4
4
Original file line number Diff line number Diff line change 1
1
module github.com/harness/ff-golang-server-sdk
2
2
3
- go 1.16
3
+ go 1.18
4
4
5
5
require (
6
6
github.com/deepmap/oapi-codegen v1.11.0
@@ -16,7 +16,24 @@ require (
16
16
github.com/r3labs/sse v0.0.0-20201126193848-34e640891548
17
17
github.com/spaolacci/murmur3 v1.1.0
18
18
github.com/stretchr/testify v1.7.1
19
- go.uber.org/multierr v1.6.0 // indirect
20
19
go.uber.org/zap v1.16.0
21
20
gopkg.in/cenkalti/backoff.v1 v1.1.0
22
21
)
22
+
23
+ require (
24
+ github.com/davecgh/go-spew v1.1.1 // indirect
25
+ github.com/ghodss/yaml v1.0.0 // indirect
26
+ github.com/go-openapi/jsonpointer v0.19.5 // indirect
27
+ github.com/go-openapi/swag v0.21.1 // indirect
28
+ github.com/hashicorp/go-cleanhttp v0.5.1 // indirect
29
+ github.com/josharian/intern v1.0.0 // indirect
30
+ github.com/mailru/easyjson v0.7.7 // indirect
31
+ github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
32
+ github.com/modern-go/reflect2 v1.0.2 // indirect
33
+ github.com/pmezard/go-difflib v1.0.0 // indirect
34
+ go.uber.org/atomic v1.7.0 // indirect
35
+ go.uber.org/multierr v1.6.0 // indirect
36
+ golang.org/x/net v0.0.0-20220513224357-95641704303c // indirect
37
+ gopkg.in/yaml.v2 v2.4.0 // indirect
38
+ gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
39
+ )
Original file line number Diff line number Diff line change 1
1
module github.com/harness/ff-golang-server-sdk/test_wrapper
2
2
3
- go 1.16
3
+ go 1.18
4
4
5
5
replace github.com/harness/ff-golang-server-sdk => ../
6
6
You can’t perform that action at this time.
0 commit comments