ci(tenant-registry): downgrade go directive 1.25 → 1.24
ci / shared (pull_request) Successful in 3s
ci / test (pull_request) Failing after 38s
ci / image (pull_request) Has been skipped

The runner's golangci-lint binary is built with Go 1.24 and refuses
to lint modules targeting a higher Go version ('the Go language
version (go1.24) used to build golangci-lint is lower than the
targeted Go version (1.25)'). 1.24 is current stable and covers
everything the skeleton uses (slog, ServeMux method routing).

Dockerfile pinned to golang:1.24-alpine to match.

Refs: M4.1
This commit is contained in:
2026-05-18 23:09:14 +02:00
parent a590caa34b
commit 86d3454069
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
# Multi-stage build for tenant-registry.
FROM golang:1.25-alpine AS build
FROM golang:1.24-alpine AS build
WORKDIR /src
COPY go.mod ./
RUN go mod download
+1 -1
View File
@@ -1,3 +1,3 @@
module gitea.meghsakha.com/platform/tenant-registry
go 1.25
go 1.24