From cdf0892b2eb0b17a5dd5a2182a474134dda1ae47 Mon Sep 17 00:00:00 2001 From: claude-ceo-assistant Date: Thu, 7 May 2026 01:11:34 -0700 Subject: [PATCH] chore(ci): pin artifact actions to @v3 for Gitea act_runner compatibility (internal#46) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 2 uses pinned in .github/workflows/publish.yml (1 upload at line 52, 1 download at line 64). v4 relies on a runtime API shape Gitea's act_runner v0.6.x doesn't fully support; v3 works end-to-end. YAML parse green. Sister PRs in molecule-controlplane (#18) and molecule-core (#18). Per internal#46 Phase 2 audit. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1a73fad..6e05a6b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -49,7 +49,7 @@ jobs: /tmp/install-test/bin/pip install dist/*.whl /tmp/install-test/bin/codex-channel-molecule --help - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v3 # pinned to v3 for Gitea act_runner v0.6 compatibility (internal#46) with: name: dist path: dist/ @@ -61,7 +61,7 @@ jobs: permissions: id-token: write steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v3 # pinned to v3 for Gitea act_runner v0.6 compatibility (internal#46) with: name: dist path: dist/ -- 2.45.2