File tree 15 files changed +24
-23
lines changed
images/samples/go-function-samples/func
15 files changed +24
-23
lines changed Original file line number Diff line number Diff line change @@ -49,10 +49,10 @@ jobs:
49
49
username : ${{ secrets.DOCKER_USER }}
50
50
password : ${{ secrets.DOCKER_PASSWORD }}
51
51
52
- - name : Set up GO 1.23.0
52
+ - name : Set up GO 1.23.7
53
53
uses : actions/setup-go@v1
54
54
with :
55
- go-version : 1.23.0
55
+ go-version : 1.23.7
56
56
id : go
57
57
58
58
- name : InstallKubebuilder
@@ -180,10 +180,10 @@ jobs:
180
180
username : ${{ secrets.DOCKER_USER }}
181
181
password : ${{ secrets.DOCKER_PASSWORD }}
182
182
183
- - name : Set up GO 1.23.0
183
+ - name : Set up GO 1.23.7
184
184
uses : actions/setup-go@v1
185
185
with :
186
- go-version : 1.23.0
186
+ go-version : 1.23.7
187
187
id : go
188
188
189
189
- name : InstallKubebuilder
Original file line number Diff line number Diff line change @@ -34,10 +34,10 @@ jobs:
34
34
- name : checkout
35
35
uses : actions/checkout@v2
36
36
37
- - name : Set up GO 1.23.0
37
+ - name : Set up GO 1.23.7
38
38
uses : actions/setup-go@v1
39
39
with :
40
- go-version : 1.23.0
40
+ go-version : 1.23.7
41
41
id : go
42
42
43
43
- name : InstallKubebuilder
Original file line number Diff line number Diff line change 18
18
strategy :
19
19
fail-fast : false
20
20
matrix :
21
- go-version : [1.22.12, 1.23.0 ]
21
+ go-version : [1.22.12, 1.23.7 ]
22
22
steps :
23
23
- name : Free Disk Space (Ubuntu)
24
24
uses : jlumbroso/free-disk-space@v1.3.0
Original file line number Diff line number Diff line change @@ -37,10 +37,10 @@ jobs:
37
37
username : ${{ secrets.DOCKER_USER }}
38
38
password : ${{ secrets.DOCKER_PASSWORD }}
39
39
40
- - name : Set up GO 1.23.0
40
+ - name : Set up GO 1.23.7
41
41
uses : actions/setup-go@v1
42
42
with :
43
- go-version : 1.23.0
43
+ go-version : 1.23.7
44
44
id : go
45
45
46
46
- name : InstallKubebuilder
Original file line number Diff line number Diff line change @@ -83,11 +83,11 @@ jobs:
83
83
run : hack/kind-cluster-build.sh --name chart-testing -c 1 -v 10 --k8sVersion v1.23.17
84
84
if : steps.list-changed.outputs.changed == 'true'
85
85
86
- - name : Set up GO 1.23.0
86
+ - name : Set up GO 1.23.7
87
87
if : steps.list-changed.outputs.changed == 'true'
88
88
uses : actions/setup-go@v1
89
89
with :
90
- go-version : 1.23.0
90
+ go-version : 1.23.7
91
91
id : go
92
92
93
93
- name : setup kubebuilder 3.6.0
Original file line number Diff line number Diff line change @@ -34,10 +34,10 @@ jobs:
34
34
repository : ${{github.event.pull_request.head.repo.full_name}}
35
35
ref : ${{ github.event.pull_request.head.sha }}
36
36
37
- - name : Set up GO 1.23.0
37
+ - name : Set up GO 1.23.7
38
38
uses : actions/setup-go@v1
39
39
with :
40
- go-version : 1.23.0
40
+ go-version : 1.23.7
41
41
id : go
42
42
43
43
- name : InstallKubebuilder
Original file line number Diff line number Diff line change @@ -45,10 +45,10 @@ jobs:
45
45
repository : ${{github.event.pull_request.head.repo.full_name}}
46
46
ref : ${{ github.event.pull_request.head.sha }}
47
47
48
- - name : Set up GO 1.23.0
48
+ - name : Set up GO 1.23.7
49
49
uses : actions/setup-go@v1
50
50
with :
51
- go-version : 1.23.0
51
+ go-version : 1.23.7
52
52
id : go
53
53
54
54
- name : InstallKubebuilder
Original file line number Diff line number Diff line change 1
1
# Build the manager binary
2
- FROM golang:1.23.0 -bullseye as builder
2
+ FROM golang:1.23.7 -bullseye as builder
3
3
4
4
WORKDIR /workspace/api
5
5
COPY api/ .
Original file line number Diff line number Diff line change 1
1
module github.com/streamnative/function-mesh/api
2
2
3
- go 1.23.0
3
+ go 1.23.7
4
4
5
5
require (
6
6
k8s.io/api v0.30.9
Original file line number Diff line number Diff line change 72
72
- email : function-mesh@streamnative.io
73
73
name : Function Mesh
74
74
maturity : alpha
75
- minKubeVersion : 1.23.0
75
+ minKubeVersion : 1.23.1
76
76
provider :
77
77
name : StreamNative
78
78
url : https://streamnative.io
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ func generateInputSpec(sourceConf v1alpha1.InputConf) map[string]*proto.Consumer
169
169
}
170
170
}
171
171
172
- if sourceConf . SourceSpecs != nil && len (sourceConf .SourceSpecs ) > 0 {
172
+ if len (sourceConf .SourceSpecs ) > 0 {
173
173
for topicName , conf := range sourceConf .SourceSpecs {
174
174
var receiverQueueSize * proto.ConsumerSpec_ReceiverQueueSize
175
175
if conf .ReceiverQueueSize != nil {
Original file line number Diff line number Diff line change 1
1
module github.com/streamnative/function-mesh
2
2
3
- go 1.23.0
3
+ go 1.23.7
4
4
5
5
toolchain go1.24.1
6
6
Original file line number Diff line number Diff line change @@ -252,6 +252,7 @@ google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQ
252
252
google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967 /go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE =
253
253
google.golang.org/protobuf v1.21.0 /go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo =
254
254
google.golang.org/protobuf v1.23.0 /go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU =
255
+ google.golang.org/protobuf v1.23.1 /go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU =
255
256
google.golang.org/protobuf v1.34.1 h1:9ddQBjfCyZPOHPUiPxpYESBLc+T8P3E+Vo4IbKZgFWg =
256
257
google.golang.org/protobuf v1.34.1 /go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos =
257
258
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 /go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0 =
Original file line number Diff line number Diff line change @@ -264,7 +264,7 @@ google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEY
264
264
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 h1:KpwkzHKEF7B9Zxg18WzOa7djJ+Ha5DzthMyZYQfEn2A =
265
265
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 /go.mod h1:nKE/iIaLqn2bQwXBg8f1g2Ylh6r5MN5CmZvuzZCgsCU =
266
266
google.golang.org/grpc v1.19.0 /go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c =
267
- google.golang.org/grpc v1.23.0 /go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg =
267
+ google.golang.org/grpc v1.23.1 /go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg =
268
268
google.golang.org/grpc v1.27.0 /go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk =
269
269
google.golang.org/grpc v1.56.3 h1:8I4C0Yq1EjstUzUJzpcRVbuYA2mODtEmpWiQoN/b2nc =
270
270
google.golang.org/grpc v1.56.3 /go.mod h1:I9bI3vqKfayGqPUAwGdOSu7kt6oIJLixfffKrpXqQ9s =
@@ -274,7 +274,7 @@ google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQ
274
274
google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967 /go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE =
275
275
google.golang.org/protobuf v1.21.0 /go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo =
276
276
google.golang.org/protobuf v1.22.0 /go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU =
277
- google.golang.org/protobuf v1.23.0 /go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU =
277
+ google.golang.org/protobuf v1.23.1 /go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU =
278
278
google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc /go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU =
279
279
google.golang.org/protobuf v1.25.0 /go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c =
280
280
google.golang.org/protobuf v1.26.0-rc.1 /go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw =
Original file line number Diff line number Diff line change 1
1
# Build the manager binary
2
- FROM golang:1.23.0 -bullseye as builder
2
+ FROM golang:1.23.7 -bullseye as builder
3
3
4
4
WORKDIR /workspace/api
5
5
COPY api/ .
You can’t perform that action at this time.
0 commit comments