diff --git a/.github/workflows/ci-bookie-checks.yml b/.github/workflows/ci-bookie-checks.yml index f0306720..1f98c997 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.12 + - name: Set up Go 1.25.14 uses: actions/setup-go@v6 with: - go-version: 1.25.12 + go-version: 1.25.14 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 d95f7dfe..2c18c81c 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.12 + - name: Set up Go 1.25.14 uses: actions/setup-go@v6 with: - go-version: 1.25.12 + go-version: 1.25.14 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.12 + - name: Set up Go 1.25.14 uses: actions/setup-go@v6 with: - go-version: 1.25.12 + go-version: 1.25.14 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.12 + - name: Set up Go 1.25.14 uses: actions/setup-go@v6 with: - go-version: 1.25.12 + go-version: 1.25.14 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 bf2d7ec7..ec209c4d 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.12 + - name: Set up Go 1.25.14 uses: actions/setup-go@v5 with: - go-version: 1.25.12 + go-version: 1.25.14 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 32484c44..5685e4ce 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.12 ] + go-version: [ 1.25.14 ] 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 96e12c4c..751ce440 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.12 + - name: Set up Go 1.25.14 uses: actions/setup-go@v5 with: - go-version: 1.25.12 + go-version: 1.25.14 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 8418f270..7010874a 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.12 + - name: Set up Go 1.25.14 uses: actions/setup-go@v5 with: - go-version: 1.25.12 + go-version: 1.25.14 id: go - name: Check out code into the Go module directory diff --git a/go.mod b/go.mod index a182d101..ec7e36aa 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/streamnative/pulsarctl -go 1.25.12 +go 1.25.14 require ( github.com/apache/pulsar-client-go v0.18.0-candidate-1.0.20251222030102-3bb7d4eff361 @@ -93,7 +93,7 @@ require ( golang.org/x/mod v0.31.0 // indirect golang.org/x/net v0.48.0 // indirect golang.org/x/oauth2 v0.34.0 // indirect - golang.org/x/sys v0.39.0 // indirect + golang.org/x/sys v0.44.0 // indirect golang.org/x/text v0.32.0 // indirect google.golang.org/genproto/googleapis/api v0.0.0-20251222181119-0a764e51fe1b // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20251222181119-0a764e51fe1b // indirect diff --git a/go.sum b/go.sum index 91c0b6e4..73d29d0e 100644 --- a/go.sum +++ b/go.sum @@ -285,8 +285,8 @@ golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -golang.org/x/sys v0.39.0 h1:CvCKL8MeisomCi6qNZ+wbb0DN9E5AATixKsvNtMoMFk= -golang.org/x/sys v0.39.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks= +golang.org/x/sys v0.44.0 h1:ildZl3J4uzeKP07r2F++Op7E9B29JRUy+a27EibtBTQ= +golang.org/x/sys v0.44.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw= golang.org/x/term v0.38.0 h1:PQ5pkm/rLO6HnxFR7N2lJHOZX6Kez5Y1gDSJla6jo7Q= golang.org/x/term v0.38.0/go.mod h1:bSEAKrOT1W+VSu9TSCMtoGEOUcKxOKgl3LE5QEF/xVg= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=