bump: go v1.26.5

This commit is contained in:
koba1t
2026-07-11 07:27:12 +09:00
parent 313aacedd3
commit 81991821f6
67 changed files with 69 additions and 69 deletions

View File

@@ -121,7 +121,7 @@ func AddGenerateDockerfile(cmd *cobra.Command) {
Use: "gen [DIR]",
Args: cobra.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
if err := os.WriteFile(filepath.Join(args[0], "Dockerfile"), []byte(`FROM public.ecr.aws/docker/library/golang:1.25.7 as builder
if err := os.WriteFile(filepath.Join(args[0], "Dockerfile"), []byte(`FROM public.ecr.aws/docker/library/golang:1.26.5 as builder
ENV CGO_ENABLED=0
WORKDIR /go/src/
COPY go.mod go.sum ./