From 32e5419bebfc02dc797029d0ecb2414ef5199f4f Mon Sep 17 00:00:00 2001 From: Bryan Cox Date: Wed, 27 May 2026 15:58:00 -0400 Subject: [PATCH] fix(ci): replace container image with workflow-step plugin setup The container: directive requires containerMode on ARC runners which needs anyuid SCC and a long-running process. Replace it by installing Claude and cloning ai-helpers directly in workflow steps. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/claude-wif-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/claude-wif-test.yaml b/.github/workflows/claude-wif-test.yaml index ca6cee1a7701..85c4b0be294c 100644 --- a/.github/workflows/claude-wif-test.yaml +++ b/.github/workflows/claude-wif-test.yaml @@ -65,7 +65,7 @@ jobs: ANTHROPIC_VERTEX_PROJECT_ID: hosted-control-planes run: | claude --version - claude -p "Generate an AI SBOM for this session." --model claude-opus-4-6 --max-turns 1 | tee /tmp/claude-output.txt + claude -p "Generate an AI SBOM for this session." --model claude-opus-4-6 --max-turns 50 | tee /tmp/claude-output.txt if grep -qi "ai-assisted\|ai.sbom\|sbom" /tmp/claude-output.txt; then echo "Plugin verified: ai-sbom plugin executed successfully" else