From 3f561dfbb570e38d850054f7fccb3e128e08ede9 Mon Sep 17 00:00:00 2001 From: Paramtamtam <7326800+tarampampam@users.noreply.github.com> Date: Tue, 14 Apr 2026 16:56:21 +0400 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20chore(deps):=20Upgrade=20G?= =?UTF-8?q?o=20version=20to=201.26?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updates the Go version used in the Dockerfile and go.mod to 1.26. This upgrade is part of routine dependency management and ensures compatibility with newer Go features and libraries. --- Dockerfile | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 38b7b42..5bf73ce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # syntax=docker/dockerfile:1 # -✂- this stage is used to compile the application ------------------------------------------------------------------- -FROM docker.io/library/golang:1.25-alpine AS compile +FROM docker.io/library/golang:1.26-alpine AS compile # can be passed with any prefix (like `v1.2.3@FOO`), e.g.: `docker build --build-arg "APP_VERSION=v1.2.3@FOO" .` ARG APP_VERSION="undefined@docker" diff --git a/go.mod b/go.mod index 35aa725..3ad1365 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module gh.tarampamp.am/describe-commit -go 1.25 +go 1.26