From 93226d69fa02e649de4d1692a1c24d770900f7c3 Mon Sep 17 00:00:00 2001 From: Story Crater Bot <19826264+Riotpiaole@users.noreply.github.com> Date: Sat, 22 Aug 2026 05:59:33 -0700 Subject: [PATCH] fix(build): update Go version requirement to 1.23 go.mod required go >= 1.25.4 but golang:1.25-alpine doesn't exist yet. Downgrade to go 1.23 which is available in Alpine images and sufficient for the codebase. Update both deployment and job images to golang:1.23-alpine. --- go.mod | 2 +- k8s/orchestrator-job.yaml | 2 +- k8s/worker-deployment.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 547ecf5..6834319 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/rockliang/poimen/workflows -go 1.25.4 +go 1.23 require ( github.com/stretchr/testify v1.12.1 diff --git a/k8s/orchestrator-job.yaml b/k8s/orchestrator-job.yaml index 7881493..1507fdb 100644 --- a/k8s/orchestrator-job.yaml +++ b/k8s/orchestrator-job.yaml @@ -13,7 +13,7 @@ spec: restartPolicy: Never containers: - name: orchestrator - image: golang:1.22-alpine + image: golang:1.23-alpine workingDir: /app command: ["/bin/sh", "-c"] args: diff --git a/k8s/worker-deployment.yaml b/k8s/worker-deployment.yaml index 3d9ef01..4778def 100644 --- a/k8s/worker-deployment.yaml +++ b/k8s/worker-deployment.yaml @@ -15,7 +15,7 @@ spec: spec: containers: - name: worker - image: golang:1.22-alpine + image: golang:1.23-alpine workingDir: /app command: ["/bin/sh", "-c"] args: