From c5c9bf802fde386207f5fcd6c4a1db6f4fdcd17f Mon Sep 17 00:00:00 2001 From: hhs <386998068@qq.com> Date: Sat, 13 Jun 2026 11:38:48 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BD=BF=E7=94=A8=20Alpine=20=E5=AE=B9?= =?UTF-8?q?=E5=99=A8=E9=95=9C=E5=83=8F=E8=A7=A3=E5=86=B3=20checkout=20acti?= =?UTF-8?q?on=20=E6=89=BE=E4=B8=8D=E5=88=B0=20node=20=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/backend-ci.yml | 4 ++++ .gitea/workflows/frontend-ci.yml | 1 + .gitea/workflows/health-test.yml | 1 + 3 files changed, 6 insertions(+) diff --git a/.gitea/workflows/backend-ci.yml b/.gitea/workflows/backend-ci.yml index 1accb7b..fd9eb6b 100644 --- a/.gitea/workflows/backend-ci.yml +++ b/.gitea/workflows/backend-ci.yml @@ -9,10 +9,14 @@ on: jobs: ci: runs-on: aliyun + container: golang:1.23-alpine defaults: run: working-directory: backend steps: + - name: Install Node.js (for checkout action) + run: apk add --no-cache nodejs + - uses: "http://8.161.227.145:3000/huanghaosheng/checkout@releases/v4" - name: Download dependencies diff --git a/.gitea/workflows/frontend-ci.yml b/.gitea/workflows/frontend-ci.yml index c8dfca4..a78b641 100644 --- a/.gitea/workflows/frontend-ci.yml +++ b/.gitea/workflows/frontend-ci.yml @@ -9,6 +9,7 @@ on: jobs: ci: runs-on: aliyun + container: node:22-alpine defaults: run: working-directory: frontend diff --git a/.gitea/workflows/health-test.yml b/.gitea/workflows/health-test.yml index cd07202..59da05d 100644 --- a/.gitea/workflows/health-test.yml +++ b/.gitea/workflows/health-test.yml @@ -6,6 +6,7 @@ on: [push] jobs: health: runs-on: aliyun + container: node:22-alpine steps: - run: echo "🎉 Triggered by ${{ gitea.event_name }} event" - run: echo "🌿 Branch: ${{ gitea.ref }}, Repo: ${{ gitea.repository }}" -- 2.49.1