diff --git a/.github/workflows/ci-bookie-checks.yml b/.github/workflows/ci-bookie-checks.yml index 1180c8647..1c11c4db4 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 + - name: Set up Go 1.25.8 uses: actions/setup-go@v6 with: - go-version: 1.25 + go-version: 1.25.8 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 59a97a96d..cfdc4a619 100644 --- a/.github/workflows/ci-functions-checks.yml +++ b/.github/workflows/ci-functions-checks.yml @@ -13,10 +13,10 @@ jobs: steps: - name: Login SN docker hub run: docker login -u="${{ secrets.DOCKER_USER }}" -p="${{ secrets.DOCKER_PASSWORD}}" - - name: Set up Go 1.25 + - name: Set up Go 1.25.8 uses: actions/setup-go@v6 with: - go-version: 1.25 + go-version: 1.25.8 id: go - name: Check out code into the Go module directory uses: actions/checkout@v2 @@ -30,10 +30,10 @@ jobs: steps: - name: Login SN docker hub run: docker login -u="${{ secrets.DOCKER_USER }}" -p="${{ secrets.DOCKER_PASSWORD}}" - - name: Set up Go 1.25 + - name: Set up Go 1.25.8 uses: actions/setup-go@v6 with: - go-version: 1.25 + go-version: 1.25.8 id: go - name: Check out code into the Go module directory uses: actions/checkout@v2 @@ -44,10 +44,10 @@ jobs: steps: - name: Login SN docker hub run: docker login -u="${{ secrets.DOCKER_USER }}" -p="${{ secrets.DOCKER_PASSWORD}}" - - name: Set up Go 1.25 + - name: Set up Go 1.25.8 uses: actions/setup-go@v6 with: - go-version: 1.25 + go-version: 1.25.8 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 5a1098226..20392ff70 100644 --- a/.github/workflows/ci-packages-checks.yml +++ b/.github/workflows/ci-packages-checks.yml @@ -13,10 +13,10 @@ jobs: steps: - name: Login SN docker hub run: docker login -u="${{ secrets.DOCKER_USER }}" -p="${{ secrets.DOCKER_PASSWORD}}" - - name: Set up Go 1.25 + - name: Set up Go 1.25.8 uses: actions/setup-go@v5 with: - go-version: 1.25 + go-version: 1.25.8 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 f426c7fa9..9d1dd4e9d 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 ] + go-version: [ 1.25.8 ] 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 38b9a2165..cb602a167 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 + - name: Set up Go 1.25.8 uses: actions/setup-go@v5 with: - go-version: 1.25 + go-version: 1.25.8 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 7697c8ca1..27a0ef61d 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 + - name: Set up Go 1.25.8 uses: actions/setup-go@v5 with: - go-version: 1.25 + go-version: 1.25.8 id: go - name: Check out code into the Go module directory @@ -34,4 +34,4 @@ jobs: format: 'table' exit-code: '1' severity: "MEDIUM,HIGH,CRITICAL" - vuln-type: "library" \ No newline at end of file + vuln-type: "library" diff --git a/go.mod b/go.mod index 89535aef4..f8b9cda6d 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/streamnative/pulsarctl -go 1.25.7 +go 1.25.8 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 42217229f..3a0dc1c8c 100644 --- a/scripts/test-docker/Dockerfile +++ b/scripts/test-docker/Dockerfile @@ -8,7 +8,7 @@ USER root RUN apk update && apk add curl git build-base # install golang -COPY --from=golang:1.25.5-alpine /usr/local/go/ /usr/local/go/ +COPY --from=golang:1.25.8-alpine /usr/local/go/ /usr/local/go/ ENV PATH /usr/local/go/bin:$PATH