From 4d64ded0a2a865dd211a183cff1b53b32b4d4163 Mon Sep 17 00:00:00 2001 From: Pavel Bisse Date: Thu, 14 Aug 2025 10:20:59 +0200 Subject: [PATCH] Update Go version --- .github/workflows/verify-pull-request.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/verify-pull-request.yml b/.github/workflows/verify-pull-request.yml index ced882a..0a813ac 100644 --- a/.github/workflows/verify-pull-request.yml +++ b/.github/workflows/verify-pull-request.yml @@ -5,7 +5,7 @@ on: branches: [] env: - GO_VERSION: 1.24.6 + GO_VERSION: 1.25.0 jobs: lint: diff --git a/Dockerfile b/Dockerfile index 4a4632c..f2e3b27 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG GO_VERSION=1.24.6 +ARG GO_VERSION=1.25.0 FROM golang:${GO_VERSION}-alpine AS build_base WORKDIR /build