Skip to content

Commit edbdd67

Browse files
fix vulnerability
1 parent f3d00cd commit edbdd67

15 files changed

Lines changed: 60 additions & 60 deletions

.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.25.12
52+
- name: Set up GO 1.25.13
5353
uses: actions/setup-go@v5
5454
with:
55-
go-version: 1.25.12
55+
go-version: 1.25.13
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.25.12
183+
- name: Set up GO 1.25.13
184184
uses: actions/setup-go@v5
185185
with:
186-
go-version: 1.25.12
186+
go-version: 1.25.13
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.25.12
37+
- name: Set up GO 1.25.13
3838
uses: actions/setup-go@v5
3939
with:
40-
go-version: 1.25.12
40+
go-version: 1.25.13
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.25.12]
21+
go-version: [1.25.13]
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
@@ -40,10 +40,10 @@ jobs:
4040
- name: Set up Docker Buildx
4141
uses: docker/setup-buildx-action@v3
4242

43-
- name: Set up GO 1.25.12
43+
- name: Set up GO 1.25.13
4444
uses: actions/setup-go@v5
4545
with:
46-
go-version: 1.25.12
46+
go-version: 1.25.13
4747
id: go
4848

4949
- 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.25.12
86+
- name: Set up GO 1.25.13
8787
if: steps.list-changed.outputs.changed == 'true'
8888
uses: actions/setup-go@v5
8989
with:
90-
go-version: 1.25.12
90+
go-version: 1.25.13
9191
id: go
9292

9393
- name: setup kubebuilder 3.6.0

.github/workflows/test-integration-skywalking-e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ jobs:
6464
- name: Report disk usage
6565
run: df -h
6666

67-
- name: Set up GO 1.25.12
67+
- name: Set up GO 1.25.13
6868
uses: actions/setup-go@v5
6969
with:
70-
go-version: 1.25.12
70+
go-version: 1.25.13
7171

7272
- name: Checkout
7373
uses: actions/checkout@v3

.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.25.12
60+
- name: Set up GO 1.25.13
6161
uses: actions/setup-go@v5
6262
with:
63-
go-version: 1.25.12
63+
go-version: 1.25.13
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.25.12
70+
- name: Set up GO 1.25.13
7171
uses: actions/setup-go@v5
7272
with:
73-
go-version: 1.25.12
73+
go-version: 1.25.13
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 --platform=$BUILDPLATFORM golang:1.25.12-trixie AS builder
2+
FROM --platform=$BUILDPLATFORM golang:1.25.13-trixie AS builder
33

44
ARG TARGETOS
55
ARG TARGETARCH

go.mod

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ require (
1212
github.com/streamnative/function-mesh/api v0.29.0
1313
github.com/streamnative/pulsarctl v0.6.0
1414
github.com/stretchr/testify v1.11.1
15-
google.golang.org/protobuf v1.36.10
15+
google.golang.org/protobuf v1.36.11
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.55.0 // indirect
99-
golang.org/x/oauth2 v0.34.0 // indirect
100-
golang.org/x/sync v0.20.0 // indirect
101-
golang.org/x/sys v0.45.0 // indirect
102-
golang.org/x/term v0.43.0 // indirect
103-
golang.org/x/text v0.37.0 // indirect
98+
golang.org/x/net v0.56.0 // indirect
99+
golang.org/x/oauth2 v0.36.0 // indirect
100+
golang.org/x/sync v0.21.0 // indirect
101+
golang.org/x/sys v0.46.0 // indirect
102+
golang.org/x/term v0.44.0 // indirect
103+
golang.org/x/text v0.39.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-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
106+
google.golang.org/genproto/googleapis/api v0.0.0-20260414002931-afd174a4e478 // indirect
107+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260414002931-afd174a4e478 // indirect
108+
google.golang.org/grpc v1.82.1 // 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)