From 5751ac05a235210eb697152720fb8ee289821114 Mon Sep 17 00:00:00 2001 From: cheney Date: Thu, 16 Apr 2026 10:16:08 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=89=93=E5=8C=85=E9=95=9C?= =?UTF-8?q?=E5=83=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/build-deploy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/build-deploy.yml b/.gitea/workflows/build-deploy.yml index 2e84df7..66dc6de 100644 --- a/.gitea/workflows/build-deploy.yml +++ b/.gitea/workflows/build-deploy.yml @@ -11,14 +11,14 @@ on: jobs: build: runs-on: ubuntu-latest + container: + image: node:24-alpine steps: - name: Checkout code uses: actions/checkout@v4 - - name: Set up Node.js - uses: actions/setup-node@v4 - with: - node-version: '20' + - name: Check Node.js version + run: node --version - name: Install dependencies run: npm install --registry=https://registry.npmmirror.com