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.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -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

Expand Down
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/segmentio/topicctl

go 1.24.0
go 1.24.2

require (
github.com/aws/aws-sdk-go v1.49.12
Expand Down
2 changes: 1 addition & 1 deletion pkg/version/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package version

// Version is the current topicctl version.
const Version = "1.20.0"
const Version = "1.20.1"