From 6b7c9a4a3bac70af2fe7d1eb5ae3a703344325b5 Mon Sep 17 00:00:00 2001 From: Enrique Lacal Date: Mon, 29 Jun 2026 15:44:43 +0100 Subject: [PATCH] Pin minor version of golang in Dockerfile and workflow Signed-off-by: Enrique Lacal --- .github/workflows/go.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 6697fef..2c1c7d8 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -18,7 +18,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v4 with: - go-version: "1.26.0" + go-version: "1.26" - name: Build and Test run: make diff --git a/Dockerfile b/Dockerfile index ac8adcf..d80b65c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.26.0-alpine3.23 AS builder +FROM golang:1.26-alpine3.23 AS builder RUN apk add --no-cache make git ARG BUILD_VERSION ENV BUILD_VERSION=${BUILD_VERSION}