Skip to content

Commit 4d95064

Browse files
fix vulner
1 parent aed5301 commit 4d95064

14 files changed

Lines changed: 56 additions & 56 deletions

File tree

.github/workflows/bundle-release.yml

Lines changed: 4 additions & 4 deletions
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.24.13
52+
- name: Set up GO 1.25.8
5353
uses: actions/setup-go@v5
5454
with:
55-
go-version: 1.24.13
55+
go-version: 1.25.8
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.24.13
183+
- name: Set up GO 1.25.8
184184
uses: actions/setup-go@v5
185185
with:
186-
go-version: 1.24.13
186+
go-version: 1.25.8
187187
id: go
188188

189189
- name: InstallKubebuilder

.github/workflows/olm-verify.yml

Lines changed: 2 additions & 2 deletions
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.24.13
37+
- name: Set up GO 1.25.8
3838
uses: actions/setup-go@v5
3939
with:
40-
go-version: 1.24.13
40+
go-version: 1.25.8
4141
id: go
4242

4343
- name: InstallKubebuilder

.github/workflows/project.yml

Lines changed: 1 addition & 1 deletion
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.24.13]
21+
go-version: [1.22.12, 1.25.8]
2222
steps:
2323
- name: Free Disk Space (Ubuntu)
2424
uses: jlumbroso/free-disk-space@v1.3.0

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
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.24.13
40+
- name: Set up GO 1.25.8
4141
uses: actions/setup-go@v5
4242
with:
43-
go-version: 1.24.13
43+
go-version: 1.25.8
4444
id: go
4545

4646
- name: InstallKubebuilder

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

Lines changed: 2 additions & 2 deletions
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.24.13
86+
- name: Set up GO 1.25.8
8787
if: steps.list-changed.outputs.changed == 'true'
8888
uses: actions/setup-go@v5
8989
with:
90-
go-version: 1.24.13
90+
go-version: 1.25.8
9191
id: go
9292

9393
- name: setup kubebuilder 3.6.0

.github/workflows/trivy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ jobs:
5757
repository: ${{github.event.pull_request.head.repo.full_name}}
5858
ref: ${{ github.event.pull_request.head.sha }}
5959

60-
- name: Set up GO 1.24.13
60+
- name: Set up GO 1.25.8
6161
uses: actions/setup-go@v5
6262
with:
63-
go-version: 1.24.13
63+
go-version: 1.25.8
6464
id: go
6565

6666
- name: InstallKubebuilder

.github/workflows/trivy_scheduled_master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ jobs:
6767
repository: ${{github.event.pull_request.head.repo.full_name}}
6868
ref: ${{ github.event.pull_request.head.sha }}
6969

70-
- name: Set up GO 1.24.13
70+
- name: Set up GO 1.25.8
7171
uses: actions/setup-go@v5
7272
with:
73-
go-version: 1.24.13
73+
go-version: 1.25.8
7474
id: go
7575

7676
- name: InstallKubebuilder

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM golang:1.24.13-trixie as builder
2+
FROM golang:1.25.8-trixie as builder
33

44
WORKDIR /workspace/api
55
COPY api/ .

api/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/streamnative/function-mesh/api
22

3-
go 1.24.13
3+
go 1.25.8
44

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

go.mod

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/streamnative/function-mesh
22

3-
go 1.24.13
3+
go 1.25.8
44

55
require (
66
github.com/apache/pulsar-client-go v0.17.0
@@ -12,7 +12,7 @@ require (
1212
github.com/streamnative/function-mesh/api v0.0.0
1313
github.com/streamnative/pulsarctl v0.6.0
1414
github.com/stretchr/testify v1.11.1
15-
google.golang.org/protobuf v1.36.6
15+
google.golang.org/protobuf v1.36.10
1616
gotest.tools v2.2.0+incompatible
1717
k8s.io/api v0.32.3
1818
k8s.io/apimachinery v0.32.3
@@ -95,17 +95,17 @@ require (
9595
go.uber.org/multierr v1.11.0 // indirect
9696
go.uber.org/zap v1.27.0 // indirect
9797
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
98-
golang.org/x/net v0.39.0 // indirect
99-
golang.org/x/oauth2 v0.29.0 // indirect
100-
golang.org/x/sync v0.13.0 // indirect
98+
golang.org/x/net v0.48.0 // indirect
99+
golang.org/x/oauth2 v0.34.0 // indirect
100+
golang.org/x/sync v0.19.0 // indirect
101101
golang.org/x/sys v0.40.0 // indirect
102-
golang.org/x/term v0.31.0 // indirect
103-
golang.org/x/text v0.24.0 // indirect
102+
golang.org/x/term v0.38.0 // indirect
103+
golang.org/x/text v0.32.0 // indirect
104104
golang.org/x/time v0.10.0 // indirect
105105
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
106-
google.golang.org/genproto/googleapis/api v0.0.0-20250106144421-5f5ef82da422 // indirect
107-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250115164207-1a7da9e5054f // indirect
108-
google.golang.org/grpc v1.71.1 // indirect
106+
google.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217 // indirect
107+
google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 // indirect
108+
google.golang.org/grpc v1.79.3 // indirect
109109
gopkg.in/inf.v0 v0.9.1 // indirect
110110
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
111111
gopkg.in/yaml.v2 v2.4.0 // indirect

0 commit comments

Comments
 (0)