From 149fa49489aace1f3087a893c4aeea35a5d5b156 Mon Sep 17 00:00:00 2001 From: zealotchen Date: Tue, 8 Aug 2023 17:41:35 +0800 Subject: [PATCH] fix(action): change node version --- .github/workflows/project_artifact_release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/project_artifact_release.yml b/.github/workflows/project_artifact_release.yml index e799f071db8..3ed0b7a418b 100644 --- a/.github/workflows/project_artifact_release.yml +++ b/.github/workflows/project_artifact_release.yml @@ -178,7 +178,7 @@ jobs: - name: setup-node uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 16.13.0 registry-url: https://npm.pkg.github.com cache: 'npm' cache-dependency-path: package-lock.json @@ -188,7 +188,7 @@ jobs: run: npm run build - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 16.13.0 registry-url: 'https://registry.npmjs.org' - name: Publish to NPM if: github.event.inputs.js_npm_dist_tag_name != null && (github.event.inputs.registry_choice == 'Both' || github.event.inputs.registry_choice == 'Default')