From 72998cfbca55e1cb5b302a365ecbb5c494ad4a96 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Fri, 6 Feb 2026 17:18:07 -0500 Subject: [PATCH] fix: add container image for ai-review workflow The default gitea/act_runner image has no Node.js, which actions/checkout@v4 requires. Use catthehacker/ubuntu:act-latest like the kubernetes repo. Co-Authored-By: Claude Opus 4.6 --- .gitea/workflows/ai-review.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/ai-review.yaml b/.gitea/workflows/ai-review.yaml index b7cb099..dac9f13 100644 --- a/.gitea/workflows/ai-review.yaml +++ b/.gitea/workflows/ai-review.yaml @@ -9,6 +9,8 @@ jobs: ai-review: name: AI Code Review runs-on: ubuntu-latest + container: + image: catthehacker/ubuntu:act-latest steps: - name: Checkout code uses: actions/checkout@v4