From 8a216cd40e3b4869fcec28b0e16ec6d2598d4cce Mon Sep 17 00:00:00 2001 From: Clemens Bastian <8781699+amacado@users.noreply.github.com> Date: Tue, 22 Mar 2022 20:36:48 +0100 Subject: [PATCH] update actions/setup-node fix npm publish workflow --- .github/workflows/npm_publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/npm_publish.yml b/.github/workflows/npm_publish.yml index cff0c7264..65995014c 100644 --- a/.github/workflows/npm_publish.yml +++ b/.github/workflows/npm_publish.yml @@ -12,10 +12,10 @@ jobs: # "ref" specifies the branch to check out. # "github.event.release.target_commitish" is a global variable and specifies the branch the release targeted ref: ${{ github.event.release.target_commitish }} - - name: Use Node.js 12 - uses: actions/setup-node@v1 + - name: Use Node.js v16 + uses: actions/setup-node@v2 with: - node-version: 12 + node-version: 16 registry-url: https://registry.npmjs.org/ # Specifies the registry, this field is required! - run: npm ci - run: npm publish