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 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"