fix(build): unify Go version to 1.24 across Dockerfile and CI

SEC-09: go.mod declares Go 1.24.0 but Dockerfile.production used 1.23
and backend-ci.yml used 1.23. Aligned both to 1.24.
This commit is contained in:
senke 2026-02-22 17:32:17 +01:00
parent 368c78c102
commit d3245b2e4b
2 changed files with 3 additions and 3 deletions

View file

@ -24,7 +24,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
go-version: "1.24"
cache: true
- name: Download deps
@ -87,7 +87,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
go-version: "1.24"
cache: true
- name: Download deps

View file

@ -2,7 +2,7 @@
# Optimized for smaller size and security
# Build stage
FROM golang:1.23-alpine AS builder
FROM golang:1.24-alpine AS builder
WORKDIR /app