build: go 1.26

This commit is contained in:
Trong Huu Nguyen
2026-03-03 08:22:12 +01:00
parent dd200bb934
commit 148cd9d8e1
4 changed files with 4 additions and 4 deletions

View File

@@ -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

View File

@@ -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:

2
go.mod
View File

@@ -1,6 +1,6 @@
module github.com/nais/wonderwall
go 1.25.7
go 1.26.0
tool (
github.com/sethvargo/ratchet

View File

@@ -1,5 +1,5 @@
[tools]
go = "1.25.7"
go = "1.26.0"
[tasks.build]
run = "go build -a -o bin/wonderwall ./cmd/wonderwall"