From 01c976b5523d881e2245d529d6f2dfaba67fd90f Mon Sep 17 00:00:00 2001 From: kalo <24719519+KaloyanTanev@users.noreply.github.com> Date: Tue, 16 Jun 2026 10:48:40 +0300 Subject: [PATCH] Bump go to v1.26 to the pipelines --- .golangci.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 6558db1..abe93ff 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,6 +1,6 @@ version: "2" run: - go: "1.25" + go: "1.26" linters: default: all disable: diff --git a/Dockerfile b/Dockerfile index ca7139b..498dda3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Container for building Go binary. -FROM golang:1.25.0-bookworm AS builder +FROM golang:1.26.4-trixie AS builder # Install dependencies RUN apt-get update && apt-get install -y build-essential git # Prep and copy source