Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci-bookie-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci-functions-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-packages-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-release-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-style-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci-trivy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -34,4 +34,4 @@ jobs:
format: 'table'
exit-code: '1'
severity: "MEDIUM,HIGH,CRITICAL"
vuln-type: "library"
vuln-type: "library"
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion scripts/test-docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down
Loading