diff --git a/.github/workflows/ci-bookie-checks.yml b/.github/workflows/ci-bookie-checks.yml index 509654b9..f5af32df 100644 --- a/.github/workflows/ci-bookie-checks.yml +++ b/.github/workflows/ci-bookie-checks.yml @@ -11,10 +11,10 @@ jobs: bookie-ut-tests: runs-on: ubuntu-latest steps: - - name: Set up Go 1.25.9 + - name: Set up Go 1.25.11 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 73d3b033..8a62cdc9 100644 --- a/.github/workflows/ci-functions-checks.yml +++ b/.github/workflows/ci-functions-checks.yml @@ -14,10 +14,10 @@ jobs: - name: Login SN docker hub if: github.actor == 'streamnativebot' run: docker login -u="${{ secrets.DOCKER_USER }}" -p="${{ secrets.DOCKER_PASSWORD}}" - - name: Set up Go 1.25.9 + - name: Set up Go 1.25.11 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 @@ -34,10 +34,10 @@ jobs: - name: Login SN docker hub if: github.actor == 'streamnativebot' run: docker login -u="${{ secrets.DOCKER_USER }}" -p="${{ secrets.DOCKER_PASSWORD}}" - - name: Set up Go 1.25.9 + - name: Set up Go 1.25.11 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 @@ -51,10 +51,10 @@ jobs: - name: Login SN docker hub if: github.actor == 'streamnativebot' run: docker login -u="${{ secrets.DOCKER_USER }}" -p="${{ secrets.DOCKER_PASSWORD}}" - - name: Set up Go 1.25.9 + - name: Set up Go 1.25.11 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 59512657..9a3fe2f8 100644 --- a/.github/workflows/ci-packages-checks.yml +++ b/.github/workflows/ci-packages-checks.yml @@ -14,10 +14,10 @@ jobs: - name: Login SN docker hub if: github.actor == 'streamnativebot' run: docker login -u="${{ secrets.DOCKER_USER }}" -p="${{ secrets.DOCKER_PASSWORD}}" - - name: Set up Go 1.25.9 + - 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 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 b8d5c372..4ad9d93e 100644 --- a/.github/workflows/ci-style-checks.yml +++ b/.github/workflows/ci-style-checks.yml @@ -11,10 +11,10 @@ jobs: style-check: runs-on: ubuntu-latest steps: - - name: Set up Go 1.25.9 + - 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 uses: actions/checkout@v2 diff --git a/.github/workflows/ci-trivy.yml b/.github/workflows/ci-trivy.yml index c74defc4..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.9 + - 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