From a42df3f969630f47203411440cd40bcc28be18bb Mon Sep 17 00:00:00 2001 From: Adi <6841988+DeepSpace2@users.noreply.github.com> Date: Sun, 14 Jun 2026 23:28:01 +0300 Subject: [PATCH] chore: upgrade to go 1.26.4 --- .github/workflows/reusable-unittests.yml | 2 +- Dockerfile | 2 +- go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/reusable-unittests.yml b/.github/workflows/reusable-unittests.yml index 8abda4b..887e456 100644 --- a/.github/workflows/reusable-unittests.yml +++ b/.github/workflows/reusable-unittests.yml @@ -13,7 +13,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: "1.25.4" + go-version: "1.26.4" - name: Run tests with coverage run: go test -tags=unit -coverprofile=coverage.out ./... diff --git a/Dockerfile b/Dockerfile index d881f01..ef81d9c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.25.4-alpine AS builder +FROM golang:1.26.4-alpine AS builder LABEL org.opencontainers.image.source=https://github.com/DeepSpace2/plugnpin diff --git a/go.mod b/go.mod index ee51384..87c4484 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/deepspace2/plugnpin -go 1.25.4 +go 1.26.4 require ( github.com/caarlos0/env/v11 v11.3.1