From ac382af5452874678d23a8b3ea5b29b70771ae63 Mon Sep 17 00:00:00 2001 From: Story Crater Bot <19826264+Riotpiaole@users.noreply.github.com> Date: Sat, 22 Aug 2026 06:02:55 -0700 Subject: [PATCH] fix(deploy): use golang:latest to satisfy Go 1.25.4 requirement Dependencies require go >= 1.25.4. Alpine golang:1.22-alpine doesn't have it. Use golang:latest which should have Go 1.25+ available. Re-enable orchestrator job. --- 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 c8aa59b..547ecf5 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/rockliang/poimen/workflows -go 1.22 +go 1.25.4 require ( github.com/stretchr/testify v1.12.1 diff --git a/k8s/orchestrator-job.yaml b/k8s/orchestrator-job.yaml index 7881493..e331a46 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:latest workingDir: /app command: ["/bin/sh", "-c"] args: diff --git a/k8s/worker-deployment.yaml b/k8s/worker-deployment.yaml index 3d9ef01..dd10e72 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:latest workingDir: /app command: ["/bin/sh", "-c"] args: