From 3adbdcbd1d9f40b3b351cbc336e9c3e5ce4ac3d7 Mon Sep 17 00:00:00 2001 From: Lunar Renovate <115620512+lunar-renovate@users.noreply.github.com> Date: Mon, 20 Jan 2025 04:23:41 +0000 Subject: [PATCH] chore(deps): update golang docker tag to v1.23.5 --- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 2 +- pkg/executors/golang/compile/compile.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 51554e0..49ed87b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: 1.23.4 + go-version: 1.23.5 - name: Cache Go modules uses: actions/cache@v4 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5f7384a..11af55e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: 1.23.4 + go-version: 1.23.5 - name: Cache Go modules uses: actions/cache@v4 with: diff --git a/pkg/executors/golang/compile/compile.go b/pkg/executors/golang/compile/compile.go index dcc5809..a8e0432 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.4-alpine3.21" + golangImageVersion = "1.23.5" ) golangImage := fmt.Sprintf("golang:%s", golangImageVersion)