From 4e819fe2bf084ceb5c6c8d91c3fb7e2faade62c4 Mon Sep 17 00:00:00 2001 From: Jiwe Guo Date: Thu, 11 Dec 2025 14:27:59 +0800 Subject: [PATCH 1/2] Fix setup-go action version --- .github/workflows/ci-bookie-checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-bookie-checks.yml b/.github/workflows/ci-bookie-checks.yml index 2effb6fc4..12f35d302 100644 --- a/.github/workflows/ci-bookie-checks.yml +++ b/.github/workflows/ci-bookie-checks.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Set up Go 1.24 - uses: actions/setup-go@v1 + uses: actions/setup-go@v6 with: go-version: 1.24 id: go From 6e3fcb11962b5cc022c46d0261190e2998f9ece4 Mon Sep 17 00:00:00 2001 From: Jiwe Guo Date: Thu, 11 Dec 2025 14:35:12 +0800 Subject: [PATCH 2/2] upgrae go version to fix CVE-2025-61729 --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index b2b1f0385..a1efa0aa2 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/streamnative/pulsarctl -go 1.24.9 +go 1.24.11 require ( github.com/apache/pulsar-client-go v0.16.0