From 148cd9d8e16e1c4ff20a9862bd3c70c1eef12721 Mon Sep 17 00:00:00 2001 From: Trong Huu Nguyen Date: Tue, 3 Mar 2026 08:22:12 +0100 Subject: [PATCH] build: go 1.26 --- Dockerfile | 2 +- README.md | 2 +- go.mod | 2 +- mise.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 39619ee..dc2c54c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=$BUILDPLATFORM golang:1.25 AS builder +FROM --platform=$BUILDPLATFORM golang:1.26 AS builder ENV CGO_ENABLED=0 ENV GOTOOLCHAIN=auto WORKDIR /src diff --git a/README.md b/README.md index c440c88..d7282f9 100644 --- a/README.md +++ b/README.md @@ -94,7 +94,7 @@ The `authorization` header should no longer be set in the upstream response. ## Development -Requires Go 1.25 and [mise](https://mise.jdx.dev/) installed. +Requires Go 1.26 and [mise](https://mise.jdx.dev/) installed. Start up dependencies: diff --git a/go.mod b/go.mod index ef55b98..4e84545 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/nais/wonderwall -go 1.25.7 +go 1.26.0 tool ( github.com/sethvargo/ratchet diff --git a/mise.toml b/mise.toml index 4ee89b0..805c843 100644 --- a/mise.toml +++ b/mise.toml @@ -1,5 +1,5 @@ [tools] -go = "1.25.7" +go = "1.26.0" [tasks.build] run = "go build -a -o bin/wonderwall ./cmd/wonderwall"