diff --git a/.github/workflows/ci-bookie-checks.yml b/.github/workflows/ci-bookie-checks.yml index eba41216..7ac933c5 100644 --- a/.github/workflows/ci-bookie-checks.yml +++ b/.github/workflows/ci-bookie-checks.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Go 1.25.8 uses: actions/setup-go@v6 with: - go-version: 1.25.10 + go-version: 1.25.11 id: go - name: Check out code into the Go module directory uses: actions/checkout@v2 diff --git a/.github/workflows/ci-functions-checks.yml b/.github/workflows/ci-functions-checks.yml index 1fca3826..4611709e 100644 --- a/.github/workflows/ci-functions-checks.yml +++ b/.github/workflows/ci-functions-checks.yml @@ -17,7 +17,7 @@ jobs: - name: Set up Go 1.25.8 uses: actions/setup-go@v6 with: - go-version: 1.25.10 + go-version: 1.25.11 id: go - name: Check out code into the Go module directory uses: actions/checkout@v2 @@ -37,7 +37,7 @@ jobs: - name: Set up Go 1.25.8 uses: actions/setup-go@v6 with: - go-version: 1.25.10 + go-version: 1.25.11 id: go - name: Check out code into the Go module directory uses: actions/checkout@v2 @@ -54,7 +54,7 @@ jobs: - name: Set up Go 1.25.8 uses: actions/setup-go@v6 with: - go-version: 1.25.10 + go-version: 1.25.11 id: go - name: Check out code into the Go module directory uses: actions/checkout@v2 diff --git a/.github/workflows/ci-packages-checks.yml b/.github/workflows/ci-packages-checks.yml index c224ac18..9feaad2d 100644 --- a/.github/workflows/ci-packages-checks.yml +++ b/.github/workflows/ci-packages-checks.yml @@ -17,7 +17,7 @@ jobs: - name: Set up Go 1.25.8 uses: actions/setup-go@v5 with: - go-version: 1.25.10 + go-version: 1.25.11 id: go - name: Check out code into the Go module directory uses: actions/checkout@v2 diff --git a/.github/workflows/ci-release-checks.yml b/.github/workflows/ci-release-checks.yml index 77c80035..2205fe11 100644 --- a/.github/workflows/ci-release-checks.yml +++ b/.github/workflows/ci-release-checks.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-version: [ 1.25.10 ] + go-version: [ 1.25.11 ] steps: - uses: actions/checkout@v2 - uses: actions/setup-go@v5 diff --git a/.github/workflows/ci-style-checks.yml b/.github/workflows/ci-style-checks.yml index 646070ac..28baffac 100644 --- a/.github/workflows/ci-style-checks.yml +++ b/.github/workflows/ci-style-checks.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Go 1.25.8 uses: actions/setup-go@v5 with: - go-version: 1.25.10 + go-version: 1.25.11 id: go - name: Check out code into the Go module directory uses: actions/checkout@v2 diff --git a/.github/workflows/ci-trivy.yml b/.github/workflows/ci-trivy.yml index 3792b0ef..11617313 100644 --- a/.github/workflows/ci-trivy.yml +++ b/.github/workflows/ci-trivy.yml @@ -12,10 +12,10 @@ jobs: scan-vulnerabilities: runs-on: ubuntu-latest steps: - - name: Set up Go 1.25.8 + - name: Set up Go 1.25.11 uses: actions/setup-go@v5 with: - go-version: 1.25.10 + go-version: 1.25.11 id: go - name: Check out code into the Go module directory diff --git a/go.mod b/go.mod index 8342bc24..92013232 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/streamnative/pulsarctl -go 1.25.10 +go 1.25.11 require ( github.com/apache/pulsar-client-go v0.18.0-candidate-1.0.20251222030102-3bb7d4eff361 diff --git a/scripts/test-docker/Dockerfile b/scripts/test-docker/Dockerfile index 9550a286..10abbb2e 100644 --- a/scripts/test-docker/Dockerfile +++ b/scripts/test-docker/Dockerfile @@ -9,7 +9,7 @@ USER root RUN apk update && apk add curl git build-base # install golang -COPY --from=golang:1.25.10-alpine /usr/local/go/ /usr/local/go/ +COPY --from=golang:1.25.11-alpine /usr/local/go/ /usr/local/go/ ENV PATH /usr/local/go/bin:$PATH