Skip to content

Commit bb5a7bb

Browse files
authored
chore: update golang to 1.24.4 to address CVE-2025-22874 (#233)
* chore: update golang to 1.24.4 to address CVE-2025-22874 * Dockerfile syntax fixes
1 parent a21df3e commit bb5a7bb

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
test270:
3232
runs-on: ubuntu-latest
3333
container:
34-
image: cimg/go:1.24.2
34+
image: cimg/go:1.24.4
3535
env:
3636
GO111MODULE: "on"
3737
KAFKA_TOPICS_TEST_ZK_ADDR: zookeeper:2181
@@ -42,7 +42,7 @@ jobs:
4242
- name: Go setup
4343
uses: actions/setup-go@v3
4444
with:
45-
go-version: 1.24.2
45+
go-version: 1.24.4
4646
- name: Display Go version
4747
run: go version
4848
- name: Run tests
@@ -147,7 +147,7 @@ jobs:
147147
test360:
148148
runs-on: ubuntu-latest
149149
container:
150-
image: cimg/go:1.24.0
150+
image: cimg/go:1.24.4
151151
env:
152152
GO111MODULE: "on"
153153
KAFKA_TOPICS_TEST_ZK_ADDR: zookeeper:2181
@@ -158,7 +158,7 @@ jobs:
158158
- name: Go setup
159159
uses: actions/setup-go@v3
160160
with:
161-
go-version: 1.24.0
161+
go-version: 1.24.4
162162
- name: Display Go version
163163
run: go version
164164
- name: Run tests

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
FROM --platform=$BUILDPLATFORM golang:1.24.2 as builder
2-
ENV SRC github.com/segmentio/topicctl
1+
FROM --platform=$BUILDPLATFORM golang:1.24.4 AS builder
2+
ENV SRC=github.com/segmentio/topicctl
33
ENV CGO_ENABLED=0
44

55
ARG VERSION

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/segmentio/topicctl
22

3-
go 1.24.2
3+
go 1.24.4
44

55
require (
66
github.com/aws/aws-sdk-go v1.49.12

pkg/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
package version
22

33
// Version is the current topicctl version.
4-
const Version = "1.20.1"
4+
const Version = "1.20.2"

0 commit comments

Comments
 (0)