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