From 7e77d4bc85b59693d22ad5740b70a7579f8de0dd Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Mon, 16 Dec 2024 10:59:16 -0500 Subject: [PATCH] Go 1.23.4 Signed-off-by: Mathieu Benoit --- Dockerfile | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5d05041..f5344e1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Use the official Golang image to create a build artifact. # This is based on Debian and sets the GOPATH to /go. # https://hub.docker.com/_/golang -FROM golang:1.23 AS builder +FROM golang:1.23.4 AS builder # Set the current working directory inside the container. WORKDIR /go/src/github.com/score-spec/score-k8s diff --git a/go.mod b/go.mod index 5631d21..6dab4ee 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/score-spec/score-k8s -go 1.23.0 +go 1.23.4 require ( github.com/Masterminds/sprig/v3 v3.3.0