From 644598449136ecadac01fc5294667cbf000598b4 Mon Sep 17 00:00:00 2001 From: Lunar Renovate <115620512+lunar-renovate@users.noreply.github.com> Date: Wed, 10 Jan 2024 00:07:02 +0000 Subject: [PATCH] chore(deps): update golang docker tag to v1.21.6 --- 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 2d7bf93..f0f8dab 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.21.5-alpine" + golangImageVersion = "1.21.6-alpine" ) golangImage := fmt.Sprintf("golang:%s", golangImageVersion)