From 798af90924656869acded3fe8ef050330e0e8e69 Mon Sep 17 00:00:00 2001 From: Lunar Renovate <115620512+lunar-renovate@users.noreply.github.com> Date: Fri, 3 Jan 2025 08:21:47 +0100 Subject: [PATCH] Update golang Docker tag to v1.23.4 (#116) Co-authored-by: Jacob Valdemar --- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 2 +- Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 480235b..0de2012 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.3 + go-version: 1.23.4 - name: Cache Go modules uses: actions/cache@v4 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e7bdd96..e1f0a11 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: 1.23.3 + go-version: 1.23.4 - name: Cache Go modules uses: actions/cache@v4 with: diff --git a/Dockerfile b/Dockerfile index b56c83a..228c18e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23.3 as builder +FROM golang:1.23.4 as builder WORKDIR /src ENV CGO_ENABLED=0