Skip to content

Commit e9bdd32

Browse files
authored
Use Go 1.24 (revert dependency downgrades) (#24)
1 parent 4ee3c59 commit e9bdd32

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Set up Go
3434
uses: actions/setup-go@v5
3535
with:
36-
go-version: '1.23'
36+
go-version: '1.24'
3737

3838
- name: Download dependencies
3939
run: go mod download
@@ -63,7 +63,7 @@ jobs:
6363
- name: Set up Go
6464
uses: actions/setup-go@v5
6565
with:
66-
go-version: '1.23'
66+
go-version: '1.24'
6767

6868
- name: Run golangci-lint
6969
uses: golangci/golangci-lint-action@v4
@@ -80,7 +80,7 @@ jobs:
8080
- name: Set up Go
8181
uses: actions/setup-go@v5
8282
with:
83-
go-version: '1.23'
83+
go-version: '1.24'
8484

8585
- name: Build CLI
8686
run: go build -o bin/ingestkit ./cmd/cli

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Set up Go
4141
uses: actions/setup-go@v5
4242
with:
43-
go-version: '1.23'
43+
go-version: '1.24'
4444

4545
- name: Build CLI binary
4646
env:

Dockerfile.api

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage
2-
FROM golang:1.23-alpine AS builder
2+
FROM golang:1.24-alpine AS builder
33

44
# Install build dependencies
55
RUN apk add --no-cache git make

Dockerfile.consumer

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage
2-
FROM golang:1.23-alpine AS builder
2+
FROM golang:1.24-alpine AS builder
33

44
# Install build dependencies
55
RUN apk add --no-cache git make

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
module github.com/feat7/ingestkit
22

3-
go 1.23
3+
go 1.24.0
44

55
require (
66
github.com/gofiber/fiber/v2 v2.52.9
77
github.com/google/uuid v1.6.0
88
github.com/jackc/pgx/v5 v5.7.6
99
github.com/lib/pq v1.10.9
1010
github.com/rs/zerolog v1.34.0
11-
github.com/twmb/franz-go v1.18.1
11+
github.com/twmb/franz-go v1.20.3
1212
gopkg.in/yaml.v3 v3.0.1
1313
)
1414

@@ -26,7 +26,7 @@ require (
2626
github.com/rivo/uniseg v0.2.0 // indirect
2727
github.com/rogpeppe/go-internal v1.12.0 // indirect
2828
github.com/stretchr/testify v1.10.0 // indirect
29-
github.com/twmb/franz-go/pkg/kmsg v1.9.0 // indirect
29+
github.com/twmb/franz-go/pkg/kmsg v1.12.0 // indirect
3030
github.com/valyala/bytebufferpool v1.0.0 // indirect
3131
github.com/valyala/fasthttp v1.51.0 // indirect
3232
github.com/valyala/tcplisten v1.0.0 // indirect

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UV
5151
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
5252
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
5353
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
54-
github.com/twmb/franz-go v1.18.1 h1:D75xxCDyvTqBSiImFx2lkPduE39jz1vaD7+FNc+vMkc=
55-
github.com/twmb/franz-go v1.18.1/go.mod h1:Uzo77TarcLTUZeLuGq+9lNpSkfZI+JErv7YJhlDjs9M=
54+
github.com/twmb/franz-go v1.20.3 h1:gjwZwZmmvo/t7mxyj6frxDORVxsqrycXPnDrpkXldfY=
55+
github.com/twmb/franz-go v1.20.3/go.mod h1:YCnepDd4gl6vdzG03I5Wa57RnCTIC6DVEyMpDX/J8UA=
5656
github.com/twmb/franz-go/pkg/kmsg v1.12.0 h1:CbatD7ers1KzDNgJqPbKOq0Bz/WLBdsTH75wgzeVaPc=
5757
github.com/twmb/franz-go/pkg/kmsg v1.12.0/go.mod h1:+DPt4NC8RmI6hqb8G09+3giKObE6uD2Eya6CfqBpeJY=
5858
github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw=

0 commit comments

Comments
 (0)