From b2d40a6a5c16b591e9d6173478d2783766da86a4 Mon Sep 17 00:00:00 2001 From: Jonas Kwiedor Date: Mon, 13 Jan 2025 10:15:19 +0100 Subject: [PATCH 1/2] build(deps): update go modules file --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 15228dd..d62c8d7 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module github.com/gowizzard/mobyspulse -go 1.22.0 +go 1.23 From a1c311eb9099063c16f21d743bea4e0a2b8fb96a Mon Sep 17 00:00:00 2001 From: Jonas Kwiedor Date: Mon, 13 Jan 2025 10:15:35 +0100 Subject: [PATCH 2/2] fix: update go version in dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b47e2b0..9c27b61 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ # This phase uses the Alpine-based Go image to compile the source code of the application. # By parameterizing the Go version, it becomes straightforward to maintain and modify in the future. -ARG GO_VERSION=1.22 +ARG GO_VERSION=1.23 FROM golang:${GO_VERSION}-alpine AS build RUN apk add --no-cache git make WORKDIR /tmp/src