Skip to content
Closed
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 tool/codegen/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Stage 1: Builder - Build Go-based plugins

FROM golang:1.25.2 AS builder
FROM golang:1.26.2 AS builder

# Version configuration
ARG PROTOC_GEN_GO_VER=1.27.1
Expand Down Expand Up @@ -75,7 +75,7 @@ RUN apt-get update \

# Copy Go runtime from golang image
# mockgen uses 'go list' and 'go build' internally
COPY --from=golang:1.25.2 /usr/local/go /usr/local/go
COPY --from=golang:1.26.2 /usr/local/go /usr/local/go
ENV GOROOT=/usr/local/go
ENV GOPATH=/go
ENV PATH=$GOPATH/bin:$GOROOT/bin:$PATH
Expand Down
2 changes: 1 addition & 1 deletion tool/codegen/protoc-gen-auth/go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/pipe-cd/pipecd/tool/codegen/protoc-gen-auth

go 1.25.0
go 1.26.2

require google.golang.org/protobuf v1.33.0
Loading