diff --git a/.github/workflows/ci-bookie-checks.yml b/.github/workflows/ci-bookie-checks.yml index f5af32df..f0306720 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.11 + - name: Set up Go 1.25.12 uses: actions/setup-go@v6 with: - go-version: 1.25.11 + go-version: 1.25.12 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 8a62cdc9..d95f7dfe 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.11 + - name: Set up Go 1.25.12 uses: actions/setup-go@v6 with: - go-version: 1.25.11 + go-version: 1.25.12 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.11 + - name: Set up Go 1.25.12 uses: actions/setup-go@v6 with: - go-version: 1.25.11 + go-version: 1.25.12 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.11 + - name: Set up Go 1.25.12 uses: actions/setup-go@v6 with: - go-version: 1.25.11 + go-version: 1.25.12 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 9a3fe2f8..bf2d7ec7 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.11 + - name: Set up Go 1.25.12 uses: actions/setup-go@v5 with: - go-version: 1.25.11 + go-version: 1.25.12 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 2205fe11..32484c44 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.11 ] + go-version: [ 1.25.12 ] 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 4ad9d93e..96e12c4c 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.11 + - name: Set up Go 1.25.12 uses: actions/setup-go@v5 with: - go-version: 1.25.11 + go-version: 1.25.12 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 11617313..8418f270 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.11 + - name: Set up Go 1.25.12 uses: actions/setup-go@v5 with: - go-version: 1.25.11 + go-version: 1.25.12 id: go - name: Check out code into the Go module directory diff --git a/go.mod b/go.mod index 92013232..a182d101 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/streamnative/pulsarctl -go 1.25.11 +go 1.25.12 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 10abbb2e..0ca10fba 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.11-alpine /usr/local/go/ /usr/local/go/ +COPY --from=golang:1.25.12-alpine /usr/local/go/ /usr/local/go/ ENV PATH /usr/local/go/bin:$PATH