From d3245b2e4bd7cf2f57c5834d37415c2317593b5f Mon Sep 17 00:00:00 2001 From: senke Date: Sun, 22 Feb 2026 17:32:17 +0100 Subject: [PATCH] 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. --- .github/workflows/backend-ci.yml | 4 ++-- veza-backend-api/Dockerfile.production | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/backend-ci.yml b/.github/workflows/backend-ci.yml index 98abdf3a0..4445cbc83 100644 --- a/.github/workflows/backend-ci.yml +++ b/.github/workflows/backend-ci.yml @@ -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 diff --git a/veza-backend-api/Dockerfile.production b/veza-backend-api/Dockerfile.production index 1ee26ca18..6865eb70e 100644 --- a/veza-backend-api/Dockerfile.production +++ b/veza-backend-api/Dockerfile.production @@ -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