diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 31ee0870..793636eb 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.2 + image: cimg/go:1.24.4 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.2 + go-version: 1.24.4 - name: Display Go version run: go version - name: Run tests @@ -147,7 +147,7 @@ jobs: test360: runs-on: ubuntu-latest container: - image: cimg/go:1.24.0 + image: cimg/go:1.24.4 env: GO111MODULE: "on" KAFKA_TOPICS_TEST_ZK_ADDR: zookeeper:2181 @@ -158,7 +158,7 @@ jobs: - name: Go setup uses: actions/setup-go@v3 with: - go-version: 1.24.0 + go-version: 1.24.4 - name: Display Go version run: go version - name: Run tests diff --git a/Dockerfile b/Dockerfile index 33b925d5..2f56ae81 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -FROM --platform=$BUILDPLATFORM golang:1.24.2 as builder -ENV SRC github.com/segmentio/topicctl +FROM --platform=$BUILDPLATFORM golang:1.24.4 AS builder +ENV SRC=github.com/segmentio/topicctl ENV CGO_ENABLED=0 ARG VERSION diff --git a/go.mod b/go.mod index 107985fd..b6e82134 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/segmentio/topicctl -go 1.24.2 +go 1.24.4 require ( github.com/aws/aws-sdk-go v1.49.12 diff --git a/pkg/version/version.go b/pkg/version/version.go index 781fa7aa..e2b6ecac 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.1" +const Version = "1.20.2"