From 9d1b3de0b2eb01859c7cf39c1b572a7520bb358a Mon Sep 17 00:00:00 2001 From: bzp2010 Date: Mon, 20 Oct 2025 18:26:01 +0800 Subject: [PATCH] fix(release): build binary using node.js 22.17.0 --- .github/workflows/release.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 88e9239..f1a0edb 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -12,9 +12,9 @@ jobs: run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV # Build and test ADC CLI - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: - node-version: "lts/*" + node-version: "22.17.0" - uses: pnpm/action-setup@v4 - name: Build ADC env: @@ -62,11 +62,11 @@ jobs: # Build and test ADC CLI - uses: actions/setup-node@v4 with: - node-version: "lts/*" + node-version: "22.17.0" - uses: pnpm/action-setup@v2 - name: Build ADC env: - NODE_VERSION: 22.20.0 + NODE_VERSION: 22.17.0 run: | pnpm install NODE_ENV=production npx nx build cli