File tree Expand file tree Collapse file tree 10 files changed +101
-113
lines changed
Expand file tree Collapse file tree 10 files changed +101
-113
lines changed Original file line number Diff line number Diff line change 4141 cache : false
4242
4343 - name : Lint
44- uses : golangci/golangci-lint-action@v6
44+ uses : golangci/golangci-lint-action@v7
4545 with :
46- args : --build-tags integration -p bugs -p unused - D protogetter --timeout=5m
46+ args : --build-tags integration -D protogetter --timeout=5m
4747
4848 - name : Make tag
4949 run : |
@@ -52,14 +52,14 @@ jobs:
5252 [ "${GITHUB_EVENT_NAME}" == 'push' ] && echo "tag=latest" >> $GITHUB_ENV || true
5353
5454 - name : Push server image
55- uses : docker/build-push-action@v5
55+ uses : docker/build-push-action@v6
5656 with :
5757 context : .
5858 push : true
5959 tags : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.tag }}
6060
6161 - name : Push client image
62- uses : docker/build-push-action@v5
62+ uses : docker/build-push-action@v6
6363 with :
6464 context : .
6565 file : Dockerfile.client
Original file line number Diff line number Diff line change 1- FROM golang:1.23 -bookworm AS builder
1+ FROM golang:1.24 -bookworm AS builder
22COPY / /work
33WORKDIR /work
44RUN make server
55
6- FROM gcr.io/distroless/static-debian12
6+ FROM gcr.io/distroless/static-debian12:nonroot
77COPY --from=builder /work/bin/server /server
88ENV SERVER_PORT=50051
99EXPOSE ${SERVER_PORT}
Original file line number Diff line number Diff line change 1- FROM golang:1.23 -bookworm AS builder
1+ FROM golang:1.24 -bookworm AS builder
22COPY / /work
33WORKDIR /work
44RUN apt-get update \
Original file line number Diff line number Diff line change 11module github.com/metal-pod/droptailer
22
3- go 1.23
3+ go 1.24
44
55require (
66 github.com/coreos/go-systemd/v22 v22.5.0
77 github.com/grpc-ecosystem/go-grpc-middleware v1.4.0
8- google.golang.org/grpc v1.67 .1
9- google.golang.org/protobuf v1.34.2
8+ google.golang.org/grpc v1.71 .1
9+ google.golang.org/protobuf v1.36.6
1010)
1111
1212require (
13- golang.org/x/net v0.29 .0 // indirect
14- golang.org/x/sys v0.25 .0 // indirect
15- golang.org/x/text v0.18 .0 // indirect
16- google.golang.org/genproto/googleapis/rpc v0.0.0-20240930140551-af27646dc61f // indirect
13+ golang.org/x/net v0.39 .0 // indirect
14+ golang.org/x/sys v0.32 .0 // indirect
15+ golang.org/x/text v0.24 .0 // indirect
16+ google.golang.org/genproto/googleapis/rpc v0.0.0-20250414145226-207652e42e2e // indirect
1717)
You can’t perform that action at this time.
0 commit comments