From 2c8f24957393e25ea6c8622c28f90267911e6352 Mon Sep 17 00:00:00 2001 From: Peter Dannemann Date: Fri, 6 Jun 2025 13:48:51 -0400 Subject: [PATCH 1/2] chore: bump go to 1.24.2 --- .github/workflows/ci.yml | 4 ++-- Dockerfile | 2 +- go.mod | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fa2e0c81..31ee0870 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: test270: runs-on: ubuntu-latest container: - image: cimg/go:1.24.0 + image: cimg/go:1.24.2 env: GO111MODULE: "on" KAFKA_TOPICS_TEST_ZK_ADDR: zookeeper:2181 @@ -42,7 +42,7 @@ jobs: - name: Go setup uses: actions/setup-go@v3 with: - go-version: 1.24.0 + go-version: 1.24.2 - name: Display Go version run: go version - name: Run tests diff --git a/Dockerfile b/Dockerfile index f9dc8f6d..33b925d5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=$BUILDPLATFORM golang:1.24.0 as builder +FROM --platform=$BUILDPLATFORM golang:1.24.2 as builder ENV SRC github.com/segmentio/topicctl ENV CGO_ENABLED=0 diff --git a/go.mod b/go.mod index 3042dd85..107985fd 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/segmentio/topicctl -go 1.24.0 +go 1.24.2 require ( github.com/aws/aws-sdk-go v1.49.12 From 6c44b13137ee324d1823537a98022c3d687e1d8a Mon Sep 17 00:00:00 2001 From: Peter Dannemann Date: Fri, 6 Jun 2025 13:57:52 -0400 Subject: [PATCH 2/2] bump version --- pkg/version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/version/version.go b/pkg/version/version.go index d99f065f..781fa7aa 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -1,4 +1,4 @@ package version // Version is the current topicctl version. -const Version = "1.20.0" +const Version = "1.20.1"