Skip to content

Commit 3a68042

Browse files
committed
fix go
1 parent fe6b526 commit 3a68042

File tree

15 files changed

+24
-23
lines changed

15 files changed

+24
-23
lines changed

.github/workflows/bundle-release.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ jobs:
4949
username: ${{ secrets.DOCKER_USER }}
5050
password: ${{ secrets.DOCKER_PASSWORD }}
5151

52-
- name: Set up GO 1.23.0
52+
- name: Set up GO 1.23.7
5353
uses: actions/setup-go@v1
5454
with:
55-
go-version: 1.23.0
55+
go-version: 1.23.7
5656
id: go
5757

5858
- name: InstallKubebuilder
@@ -180,10 +180,10 @@ jobs:
180180
username: ${{ secrets.DOCKER_USER }}
181181
password: ${{ secrets.DOCKER_PASSWORD }}
182182

183-
- name: Set up GO 1.23.0
183+
- name: Set up GO 1.23.7
184184
uses: actions/setup-go@v1
185185
with:
186-
go-version: 1.23.0
186+
go-version: 1.23.7
187187
id: go
188188

189189
- name: InstallKubebuilder

.github/workflows/olm-verify.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ jobs:
3434
- name: checkout
3535
uses: actions/checkout@v2
3636

37-
- name: Set up GO 1.23.0
37+
- name: Set up GO 1.23.7
3838
uses: actions/setup-go@v1
3939
with:
40-
go-version: 1.23.0
40+
go-version: 1.23.7
4141
id: go
4242

4343
- name: InstallKubebuilder

.github/workflows/project.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
go-version: [1.22.12, 1.23.0]
21+
go-version: [1.22.12, 1.23.7]
2222
steps:
2323
- name: Free Disk Space (Ubuntu)
2424
uses: jlumbroso/free-disk-space@v1.3.0

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ jobs:
3737
username: ${{ secrets.DOCKER_USER }}
3838
password: ${{ secrets.DOCKER_PASSWORD }}
3939

40-
- name: Set up GO 1.23.0
40+
- name: Set up GO 1.23.7
4141
uses: actions/setup-go@v1
4242
with:
43-
go-version: 1.23.0
43+
go-version: 1.23.7
4444
id: go
4545

4646
- name: InstallKubebuilder

.github/workflows/test-helm-charts.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,11 @@ jobs:
8383
run: hack/kind-cluster-build.sh --name chart-testing -c 1 -v 10 --k8sVersion v1.23.17
8484
if: steps.list-changed.outputs.changed == 'true'
8585

86-
- name: Set up GO 1.23.0
86+
- name: Set up GO 1.23.7
8787
if: steps.list-changed.outputs.changed == 'true'
8888
uses: actions/setup-go@v1
8989
with:
90-
go-version: 1.23.0
90+
go-version: 1.23.7
9191
id: go
9292

9393
- name: setup kubebuilder 3.6.0

.github/workflows/trivy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ jobs:
3434
repository: ${{github.event.pull_request.head.repo.full_name}}
3535
ref: ${{ github.event.pull_request.head.sha }}
3636

37-
- name: Set up GO 1.23.0
37+
- name: Set up GO 1.23.7
3838
uses: actions/setup-go@v1
3939
with:
40-
go-version: 1.23.0
40+
go-version: 1.23.7
4141
id: go
4242

4343
- name: InstallKubebuilder

.github/workflows/trivy_scheduled_master.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ jobs:
4545
repository: ${{github.event.pull_request.head.repo.full_name}}
4646
ref: ${{ github.event.pull_request.head.sha }}
4747

48-
- name: Set up GO 1.23.0
48+
- name: Set up GO 1.23.7
4949
uses: actions/setup-go@v1
5050
with:
51-
go-version: 1.23.0
51+
go-version: 1.23.7
5252
id: go
5353

5454
- name: InstallKubebuilder

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM golang:1.23.0-bullseye as builder
2+
FROM golang:1.23.7-bullseye as builder
33

44
WORKDIR /workspace/api
55
COPY api/ .

api/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/streamnative/function-mesh/api
22

3-
go 1.23.0
3+
go 1.23.7
44

55
require (
66
k8s.io/api v0.30.9

config/manifests/bases/function-mesh.clusterserviceversion.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ spec:
7272
- email: function-mesh@streamnative.io
7373
name: Function Mesh
7474
maturity: alpha
75-
minKubeVersion: 1.23.0
75+
minKubeVersion: 1.23.1
7676
provider:
7777
name: StreamNative
7878
url: https://streamnative.io

controllers/spec/utils.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ func generateInputSpec(sourceConf v1alpha1.InputConf) map[string]*proto.Consumer
169169
}
170170
}
171171

172-
if sourceConf.SourceSpecs != nil && len(sourceConf.SourceSpecs) > 0 {
172+
if len(sourceConf.SourceSpecs) > 0 {
173173
for topicName, conf := range sourceConf.SourceSpecs {
174174
var receiverQueueSize *proto.ConsumerSpec_ReceiverQueueSize
175175
if conf.ReceiverQueueSize != nil {

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/streamnative/function-mesh
22

3-
go 1.23.0
3+
go 1.23.7
44

55
toolchain go1.24.1
66

go.sum

+1
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,7 @@ google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQ
252252
google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE=
253253
google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo=
254254
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=
255256
google.golang.org/protobuf v1.34.1 h1:9ddQBjfCyZPOHPUiPxpYESBLc+T8P3E+Vo4IbKZgFWg=
256257
google.golang.org/protobuf v1.34.1/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
257258
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=

images/samples/go-function-samples/func/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEY
264264
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 h1:KpwkzHKEF7B9Zxg18WzOa7djJ+Ha5DzthMyZYQfEn2A=
265265
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1/go.mod h1:nKE/iIaLqn2bQwXBg8f1g2Ylh6r5MN5CmZvuzZCgsCU=
266266
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=
268268
google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk=
269269
google.golang.org/grpc v1.56.3 h1:8I4C0Yq1EjstUzUJzpcRVbuYA2mODtEmpWiQoN/b2nc=
270270
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
274274
google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE=
275275
google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo=
276276
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=
278278
google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
279279
google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c=
280280
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=

redhat.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM golang:1.23.0-bullseye as builder
2+
FROM golang:1.23.7-bullseye as builder
33

44
WORKDIR /workspace/api
55
COPY api/ .

0 commit comments

Comments
 (0)