From 38ce807268287add73b069f57e1f8d8f88031e6b Mon Sep 17 00:00:00 2001 From: Junya Okabe Date: Tue, 19 Aug 2025 01:03:17 +0900 Subject: [PATCH 1/3] chore: bump go1.25 Signed-off-by: Junya Okabe --- tool/codegen/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tool/codegen/Dockerfile b/tool/codegen/Dockerfile index f2d78a15b7..cfa9fa6feb 100644 --- a/tool/codegen/Dockerfile +++ b/tool/codegen/Dockerfile @@ -1,5 +1,5 @@ # Builder image to build go program. -FROM golang:1.24.3 AS builder +FROM golang:1.25.0 AS builder COPY protoc-gen-auth /protoc-gen-auth RUN cd /protoc-gen-auth \ @@ -7,7 +7,7 @@ RUN cd /protoc-gen-auth \ && chmod +x /usr/local/bin/protoc-gen-auth # Codegen image which is actually being used. -FROM golang:1.24.3 +FROM golang:1.25.0 # This is version of protobuf installed in the image. # See https://pkgs.alpinelinux.org/packages?name=protobuf&branch=v3.16 @@ -17,7 +17,7 @@ ENV PROTOC_GEN_GO_VER=1.27.1 ENV PROTOC_GEN_GRPC_WEB_VER=1.3.1 ENV PROTOC_GEN_GO_GRPC_VER=1.2.0 ENV PROTOC_GEN_VALIDATE_VER=0.6.6 -ENV GOMOCK_VER=0.5.0 +ENV GOMOCK_VER=0.6.0 # dependecies and protoc RUN apt update && apt install -y protobuf-compiler From 3c64734c6991900b90435df5d881eed305509323 Mon Sep 17 00:00:00 2001 From: Junya Okabe Date: Wed, 20 Aug 2025 01:21:22 +0900 Subject: [PATCH 2/3] chore: bump go 1.25.0 Signed-off-by: Junya Okabe --- tool/codegen/protoc-gen-auth/go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/codegen/protoc-gen-auth/go.mod b/tool/codegen/protoc-gen-auth/go.mod index 180ab7a3e9..1b4caacfa3 100644 --- a/tool/codegen/protoc-gen-auth/go.mod +++ b/tool/codegen/protoc-gen-auth/go.mod @@ -1,5 +1,5 @@ module github.com/pipe-cd/pipecd/tool/codegen/protoc-gen-auth -go 1.24.1 +go 1.25.0 require google.golang.org/protobuf v1.33.0 From 3de9a1bd1dafa9ae3ea218fa24189d4354126a8c Mon Sep 17 00:00:00 2001 From: Junya Okabe Date: Thu, 21 Aug 2025 00:40:01 +0900 Subject: [PATCH 3/3] bump test.yaml Signed-off-by: Junya Okabe --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index cf595919de..7dc0b57e98 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -13,7 +13,7 @@ on: - 'feat/*' env: - GO_VERSION: 1.24.1 + GO_VERSION: 1.25.0 NODE_VERSION: 18.12.0 jobs: