From 2925c566654abccbf2f6df50def4084d4db7eb01 Mon Sep 17 00:00:00 2001 From: Lunar Renovate <115620512+lunar-renovate@users.noreply.github.com> Date: Wed, 11 Dec 2024 11:01:34 +0100 Subject: [PATCH] chore(deps): update golang docker tag to v1.23.4 (#254) automated merge --- pkg/executors/golang/compile/compile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/executors/golang/compile/compile.go b/pkg/executors/golang/compile/compile.go index d54e5be..6aaa608 100644 --- a/pkg/executors/golang/compile/compile.go +++ b/pkg/executors/golang/compile/compile.go @@ -228,7 +228,7 @@ func goInstalled() bool { func getGolangImage() string { const ( // renovate: datasource=docker depName=golang - golangImageVersion = "1.23.3-alpine" + golangImageVersion = "1.23.4-alpine" ) golangImage := fmt.Sprintf("golang:%s", golangImageVersion)