From c583e0519f8282fcfc0448bd47a7621d2ffdfef8 Mon Sep 17 00:00:00 2001 From: wonder Date: Wed, 27 May 2026 12:54:14 +0800 Subject: [PATCH] fix: downgrade checkout and setup-node to v3 for act runner compatibility v4 actions require Node 20 in PATH during post-step cleanup, which act does not provide. v3 uses Node 16 that act bundles by default. Co-Authored-By: Claude Opus 4.7 --- .gitea/workflows/deploy.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 15be170..e30bf82 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -10,10 +10,10 @@ jobs: runs-on: aliyun steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v3 - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v3 with: node-version: 22