From dd19e9f5030d53d0319370d6ebff30d6c873025a Mon Sep 17 00:00:00 2001 From: Lunar Renovate <115620512+lunar-renovate@users.noreply.github.com> Date: Mon, 11 Nov 2024 07:40:12 +0100 Subject: [PATCH] chore(deps): update golang docker tag to v1.23.3 (#251) automated merge --- .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 0ae3ec7..f5d0310 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.2 + go-version: 1.23.3 - name: Cache Go modules uses: actions/cache@v4 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 25f9354..66c73bf 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.2 + go-version: 1.23.3 - 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 39278db..d54e5be 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.2-alpine" + golangImageVersion = "1.23.3-alpine" ) golangImage := fmt.Sprintf("golang:%s", golangImageVersion)