File tree 5 files changed +7
-8
lines changed
5 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 12
12
- name : Checkout
13
13
uses : actions/checkout@v3
14
14
- name : Setup go
15
- uses : actions/setup-go@v4
15
+ uses : actions/setup-go@v5
16
16
with :
17
- go-version : ' 1.23 '
17
+ go-version-file : go.mod
18
18
check-latest : true
19
19
- run : go version
20
20
- name : Run build
Original file line number Diff line number Diff line change 20
20
describe=$(git describe --tags --always --dirty)
21
21
echo "GIT_COMMIT_REF_NAME=$describe" >> $GITHUB_ENV
22
22
- name : Setup go
23
- uses : actions/setup-go@v4
23
+ uses : actions/setup-go@v5
24
24
with :
25
- go-version : ' 1.23 '
25
+ go-version-file : go.mod
26
26
check-latest : true
27
27
- run : go version
28
28
- name : Run build and test
Original file line number Diff line number Diff line change 1
- FROM --platform=$BUILDPLATFORM golang:1.23 -alpine3.21 AS builder
1
+ FROM --platform=$BUILDPLATFORM golang:1.24 -alpine3.21 AS builder
2
2
RUN apk add alpine-sdk ca-certificates
3
3
4
4
ARG TARGETOS
@@ -37,4 +37,3 @@ RUN setcap 'cap_net_bind_service=+ep' /opt/kafka-proxy/bin/kafka-proxy
37
37
USER kafka-proxy
38
38
ENTRYPOINT ["/opt/kafka-proxy/bin/kafka-proxy" ]
39
39
CMD ["--help" ]
40
-
Original file line number Diff line number Diff line change 1
- FROM --platform=$BUILDPLATFORM golang:1.23 -alpine3.21 AS builder
1
+ FROM --platform=$BUILDPLATFORM golang:1.24 -alpine3.21 AS builder
2
2
RUN apk add alpine-sdk ca-certificates
3
3
4
4
ARG TARGETOS
Original file line number Diff line number Diff line change 1
1
module github.com/grepplabs/kafka-proxy
2
2
3
- go 1.23
3
+ go 1.24
4
4
5
5
require (
6
6
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5
You can’t perform that action at this time.
0 commit comments