fix: bump Go image to 1.26 to match go.mod requirement
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

go.mod declares go 1.26.1; docker build was failing with
"go.mod requires go >= 1.26.1 (running go 1.22.12; GOTOOLCHAIN=local)"

- Dockerfile: golang:1.22-alpine → golang:1.26-alpine
- .woodpecker.yml: test image 1.22-alpine → 1.26-alpine;
  gosec image 1.22-bookworm → 1.26-bookworm
- CLAUDE.md: update stack note to Go 1.26+

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
Head of Product & Engineering 2026-04-05 18:34:21 +02:00
parent 7745d205cb
commit 72345a5129
3 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@ steps:
- golangci-lint run ./... - golangci-lint run ./...
- name: test - name: test
image: golang:1.22-alpine image: golang:1.26-alpine
commands: commands:
- go test ./... - go test ./...
@ -23,7 +23,7 @@ steps:
- event: [push, pull_request] - event: [push, pull_request]
- name: gosec - name: gosec
image: golang:1.22-bookworm image: golang:1.26-bookworm
commands: commands:
- go install github.com/securego/gosec/v2/cmd/gosec@latest - go install github.com/securego/gosec/v2/cmd/gosec@latest
- gosec -exclude=G120,G706,G101,G115,G203,G124 ./... - gosec -exclude=G120,G706,G101,G115,G203,G124 ./...

View File

@ -6,7 +6,7 @@
## Stack ## Stack
- **Language:** Go 1.22+ - **Language:** Go 1.26+
- **HTTP:** `net/http` (stdlib) + `chi` router (lightweight) - **HTTP:** `net/http` (stdlib) + `chi` router (lightweight)
- **Database:** MongoDB (OAuth token storage) - **Database:** MongoDB (OAuth token storage)
- **Mongo driver:** `go.mongodb.org/mongo-driver/v2` - **Mongo driver:** `go.mongodb.org/mongo-driver/v2`

View File

@ -1,4 +1,4 @@
FROM golang:1.22-alpine AS builder FROM golang:1.26-alpine AS builder
WORKDIR /app WORKDIR /app
COPY go.mod go.sum ./ COPY go.mod go.sum ./
RUN go mod download RUN go mod download