Skip to content

Commit 6ccda10

Browse files
committed
Bump go version to 1.25.10 to fix CVE (#2072)
1 parent 3502c1a commit 6ccda10

8 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/ci-bookie-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Go 1.25.8
1515
uses: actions/setup-go@v6
1616
with:
17-
go-version: 1.25.8
17+
go-version: 1.25.10
1818
id: go
1919
- name: Check out code into the Go module directory
2020
uses: actions/checkout@v2

.github/workflows/ci-functions-checks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Go 1.25.8
1818
uses: actions/setup-go@v6
1919
with:
20-
go-version: 1.25.8
20+
go-version: 1.25.10
2121
id: go
2222
- name: Check out code into the Go module directory
2323
uses: actions/checkout@v2
@@ -37,7 +37,7 @@ jobs:
3737
- name: Set up Go 1.25.8
3838
uses: actions/setup-go@v6
3939
with:
40-
go-version: 1.25.8
40+
go-version: 1.25.10
4141
id: go
4242
- name: Check out code into the Go module directory
4343
uses: actions/checkout@v2
@@ -54,7 +54,7 @@ jobs:
5454
- name: Set up Go 1.25.8
5555
uses: actions/setup-go@v6
5656
with:
57-
go-version: 1.25.8
57+
go-version: 1.25.10
5858
id: go
5959
- name: Check out code into the Go module directory
6060
uses: actions/checkout@v2

.github/workflows/ci-packages-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Go 1.25.8
1818
uses: actions/setup-go@v5
1919
with:
20-
go-version: 1.25.8
20+
go-version: 1.25.10
2121
id: go
2222
- name: Check out code into the Go module directory
2323
uses: actions/checkout@v2

.github/workflows/ci-release-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
go-version: [ 1.25.8 ]
17+
go-version: [ 1.25.10 ]
1818
steps:
1919
- uses: actions/checkout@v2
2020
- uses: actions/setup-go@v5

.github/workflows/ci-style-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Go 1.25.8
1515
uses: actions/setup-go@v5
1616
with:
17-
go-version: 1.25.8
17+
go-version: 1.25.10
1818
id: go
1919
- name: Check out code into the Go module directory
2020
uses: actions/checkout@v2

.github/workflows/ci-trivy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up Go 1.25.8
1616
uses: actions/setup-go@v5
1717
with:
18-
go-version: 1.25.8
18+
go-version: 1.25.10
1919
id: go
2020

2121
- name: Check out code into the Go module directory

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/pulsarctl
22

3-
go 1.25.8
3+
go 1.25.10
44

55
require (
66
github.com/apache/pulsar-client-go v0.18.0-candidate-1.0.20251222030102-3bb7d4eff361

scripts/test-docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ USER root
99
RUN apk update && apk add curl git build-base
1010

1111
# install golang
12-
COPY --from=golang:1.25.8-alpine /usr/local/go/ /usr/local/go/
12+
COPY --from=golang:1.25.10-alpine /usr/local/go/ /usr/local/go/
1313
ENV PATH /usr/local/go/bin:$PATH
1414

1515

0 commit comments

Comments
 (0)