Skip to content

Commit b4d59e2

Browse files
fix vulner
1 parent 7ed40b9 commit b4d59e2

File tree

14 files changed

+31
-26
lines changed

14 files changed

+31
-26
lines changed

.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.8
52+
- name: Set up GO 1.25.9
5353
uses: actions/setup-go@v5
5454
with:
55-
go-version: 1.25.8
55+
go-version: 1.25.9
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.8
183+
- name: Set up GO 1.25.9
184184
uses: actions/setup-go@v5
185185
with:
186-
go-version: 1.25.8
186+
go-version: 1.25.9
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.8
37+
- name: Set up GO 1.25.9
3838
uses: actions/setup-go@v5
3939
with:
40-
go-version: 1.25.8
40+
go-version: 1.25.9
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.8]
21+
go-version: [1.25.9]
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.8
43+
- name: Set up GO 1.25.9
4444
uses: actions/setup-go@v5
4545
with:
46-
go-version: 1.25.8
46+
go-version: 1.25.9
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.8
86+
- name: Set up GO 1.25.9
8787
if: steps.list-changed.outputs.changed == 'true'
8888
uses: actions/setup-go@v5
8989
with:
90-
go-version: 1.25.8
90+
go-version: 1.25.9
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.25.8
60+
- name: Set up GO 1.25.9
6161
uses: actions/setup-go@v5
6262
with:
63-
go-version: 1.25.8
63+
go-version: 1.25.9
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.8
70+
- name: Set up GO 1.25.9
7171
uses: actions/setup-go@v5
7272
with:
73-
go-version: 1.25.8
73+
go-version: 1.25.9
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.8-trixie AS builder
2+
FROM --platform=$BUILDPLATFORM golang:1.25.9-trixie AS builder
33

44
ARG TARGETOS
55
ARG TARGETARCH

go.mod

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

3-
go 1.25
3+
go 1.25.0
44

55
require (
66
github.com/apache/pulsar-client-go v0.17.0
@@ -85,20 +85,20 @@ require (
8585
github.com/stoewer/go-strcase v1.2.0 // indirect
8686
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
8787
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.59.0 // indirect
88-
go.opentelemetry.io/otel v1.40.0 // indirect
88+
go.opentelemetry.io/otel v1.43.0 // indirect
8989
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 // indirect
9090
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.27.0 // indirect
91-
go.opentelemetry.io/otel/metric v1.40.0 // indirect
92-
go.opentelemetry.io/otel/sdk v1.40.0 // indirect
93-
go.opentelemetry.io/otel/trace v1.40.0 // indirect
91+
go.opentelemetry.io/otel/metric v1.43.0 // indirect
92+
go.opentelemetry.io/otel/sdk v1.43.0 // indirect
93+
go.opentelemetry.io/otel/trace v1.43.0 // indirect
9494
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
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
9898
golang.org/x/net v0.48.0 // indirect
9999
golang.org/x/oauth2 v0.34.0 // indirect
100100
golang.org/x/sync v0.19.0 // indirect
101-
golang.org/x/sys v0.40.0 // indirect
101+
golang.org/x/sys v0.42.0 // indirect
102102
golang.org/x/term v0.38.0 // indirect
103103
golang.org/x/text v0.32.0 // indirect
104104
golang.org/x/time v0.10.0 // indirect

go.sum

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,18 +231,22 @@ go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.59.0 h1:CV7UdSG
231231
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.59.0/go.mod h1:FRmFuRJfag1IZ2dPkHnEoSFVgTVPUd2qf5Vi69hLb8I=
232232
go.opentelemetry.io/otel v1.40.0 h1:oA5YeOcpRTXq6NN7frwmwFR0Cn3RhTVZvXsP4duvCms=
233233
go.opentelemetry.io/otel v1.40.0/go.mod h1:IMb+uXZUKkMXdPddhwAHm6UfOwJyh4ct1ybIlV14J0g=
234+
go.opentelemetry.io/otel v1.43.0/go.mod h1:JuG+u74mvjvcm8vj8pI5XiHy1zDeoCS2LB1spIq7Ay0=
234235
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 h1:3Q/xZUyC1BBkualc9ROb4G8qkH90LXEIICcs5zv1OYY=
235236
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0/go.mod h1:s75jGIWA9OfCMzF0xr+ZgfrB5FEbbV7UuYo32ahUiFI=
236237
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.27.0 h1:qFffATk0X+HD+f1Z8lswGiOQYKHRlzfmdJm0wEaVrFA=
237238
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.27.0/go.mod h1:MOiCmryaYtc+V0Ei+Tx9o5S1ZjA7kzLucuVuyzBZloQ=
238239
go.opentelemetry.io/otel/metric v1.40.0 h1:rcZe317KPftE2rstWIBitCdVp89A2HqjkxR3c11+p9g=
239240
go.opentelemetry.io/otel/metric v1.40.0/go.mod h1:ib/crwQH7N3r5kfiBZQbwrTge743UDc7DTFVZrrXnqc=
241+
go.opentelemetry.io/otel/metric v1.43.0/go.mod h1:RDnPtIxvqlgO8GRW18W6Z/4P462ldprJtfxHxyKd2PY=
240242
go.opentelemetry.io/otel/sdk v1.40.0 h1:KHW/jUzgo6wsPh9At46+h4upjtccTmuZCFAc9OJ71f8=
241243
go.opentelemetry.io/otel/sdk v1.40.0/go.mod h1:Ph7EFdYvxq72Y8Li9q8KebuYUr2KoeyHx0DRMKrYBUE=
244+
go.opentelemetry.io/otel/sdk v1.43.0/go.mod h1:P+IkVU3iWukmiit/Yf9AWvpyRDlUeBaRg6Y+C58QHzg=
242245
go.opentelemetry.io/otel/sdk/metric v1.40.0 h1:mtmdVqgQkeRxHgRv4qhyJduP3fYJRMX4AtAlbuWdCYw=
243246
go.opentelemetry.io/otel/sdk/metric v1.40.0/go.mod h1:4Z2bGMf0KSK3uRjlczMOeMhKU2rhUqdWNoKcYrtcBPg=
244247
go.opentelemetry.io/otel/trace v1.40.0 h1:WA4etStDttCSYuhwvEa8OP8I5EWu24lkOzp+ZYblVjw=
245248
go.opentelemetry.io/otel/trace v1.40.0/go.mod h1:zeAhriXecNGP/s2SEG3+Y8X9ujcJOTqQ5RgdEJcawiA=
249+
go.opentelemetry.io/otel/trace v1.43.0/go.mod h1:/QJhyVBUUswCphDVxq+8mld+AvhXZLhe+8WVFxiFff0=
246250
go.opentelemetry.io/proto/otlp v1.3.1 h1:TrMUixzpM0yuc/znrFTP9MMRh8trP93mkCiDVeXrui0=
247251
go.opentelemetry.io/proto/otlp v1.3.1/go.mod h1:0X1WI4de4ZsLrrJNLAQbFeLCm3T7yBkR0XqQ7niQU+8=
248252
go.uber.org/atomic v1.11.0 h1:ZvwS0R+56ePWxUNi+Atn9dWONBPp/AUETXlHW0DxSjE=
@@ -291,6 +295,7 @@ golang.org/x/sys v0.0.0-20210112080510-489259a85091/go.mod h1:h1NjWce9XRLGQEsW7w
291295
golang.org/x/sys v0.0.0-20210819135213-f52c844e1c1c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
292296
golang.org/x/sys v0.40.0 h1:DBZZqJ2Rkml6QMQsZywtnjnnGvHza6BTfYFWY9kjEWQ=
293297
golang.org/x/sys v0.40.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
298+
golang.org/x/sys v0.42.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
294299
golang.org/x/term v0.38.0 h1:PQ5pkm/rLO6HnxFR7N2lJHOZX6Kez5Y1gDSJla6jo7Q=
295300
golang.org/x/term v0.38.0/go.mod h1:bSEAKrOT1W+VSu9TSCMtoGEOUcKxOKgl3LE5QEF/xVg=
296301
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=

0 commit comments

Comments
 (0)