From 759214cfbce48975cd7303cd36eaa22f4b233773 Mon Sep 17 00:00:00 2001 From: Deluan Date: Tue, 24 Feb 2026 21:49:19 -0500 Subject: [PATCH] chore(deps): update Go version to 1.26 in Dockerfile and go.mod Signed-off-by: Deluan --- .devcontainer/devcontainer.json | 2 +- Dockerfile | 2 +- go.mod | 2 +- plugins/cmd/ndpgen/go.mod | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 81398a3ce..6743ea999 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -4,7 +4,7 @@ "dockerfile": "Dockerfile", "args": { // Update the VARIANT arg to pick a version of Go: 1, 1.15, 1.14 - "VARIANT": "1.25", + "VARIANT": "1.26", // Options "INSTALL_NODE": "true", "NODE_VERSION": "v24", diff --git a/Dockerfile b/Dockerfile index b32c1df56..71827db3f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -63,7 +63,7 @@ COPY --from=ui /build /build ######################################################################################################################## ### Build Navidrome binary -FROM --platform=$BUILDPLATFORM public.ecr.aws/docker/library/golang:1.25-trixie AS base +FROM --platform=$BUILDPLATFORM public.ecr.aws/docker/library/golang:1.26-trixie AS base RUN apt-get update && apt-get install -y clang lld COPY --from=xx / / WORKDIR /workspace diff --git a/go.mod b/go.mod index c52bb211d..31b5a70ec 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/navidrome/navidrome -go 1.25.0 +go 1.26 replace ( // Fork to fix https://github.com/navidrome/navidrome/issues/3254 diff --git a/plugins/cmd/ndpgen/go.mod b/plugins/cmd/ndpgen/go.mod index af9fce441..0cc57bb5c 100644 --- a/plugins/cmd/ndpgen/go.mod +++ b/plugins/cmd/ndpgen/go.mod @@ -1,6 +1,6 @@ module github.com/navidrome/navidrome/plugins/cmd/ndpgen -go 1.25 +go 1.26 require ( github.com/extism/go-pdk v1.1.3