From ae915d4b70ca7e31ce53dd73d25ef78723fe98c0 Mon Sep 17 00:00:00 2001 From: 64JohnLee <64lamei@gmail.com> Date: Sun, 7 Jun 2026 00:12:27 +0800 Subject: [PATCH] fix: upgrade buildpacks builder from v1 to v2 The default builder image was pinned to gcr.io/buildpacks/builder:v1, which is scheduled for sunset per Google's buildpacks support policy. This updates the default to v2, which is the current supported version. Users can still override the builder via the app.json build.buildpacks.builder field, so this is a non-breaking change for custom configurations. Fixes #310 Co-Authored-By: Claude Sonnet 4.6 --- cmd/cloudshell_open/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/cloudshell_open/main.go b/cmd/cloudshell_open/main.go index 4e290475..8fe86cca 100644 --- a/cmd/cloudshell_open/main.go +++ b/cmd/cloudshell_open/main.go @@ -353,7 +353,7 @@ func run(opts runOpts) error { skipDocker := false skipJib := false - builderImage := "gcr.io/buildpacks/builder:v1" + builderImage := "gcr.io/buildpacks/builder:v2" if appFile.Build.Buildpacks.Builder != "" { skipDocker = true