diff --git a/.github/actions/npm-publish/action.yml b/.github/actions/npm-publish/action.yml index 880fa2c5a..b59b04f12 100644 --- a/.github/actions/npm-publish/action.yml +++ b/.github/actions/npm-publish/action.yml @@ -20,7 +20,7 @@ runs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: ${{ inputs.node-version }} + node-version: 20 cache: 'npm' registry-url: 'https://registry.npmjs.org' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7cbb17111..71eae5c0f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: rl-scanner: uses: ./.github/workflows/rl-secure.yml with: - node-version: 18 ## depends if build requires node else we can remove this. + node-version: 20 ## depends if build requires node else we can remove this. artifact-name: 'node-auth0.tgz' ## Will change respective to Repository secrets: RLSECURE_LICENSE: ${{ secrets.RLSECURE_LICENSE }} @@ -32,7 +32,7 @@ jobs: uses: ./.github/workflows/npm-release.yml needs: rl-scanner with: - node-version: 18 + node-version: 20 require-build: true secrets: github-token: ${{ secrets.GITHUB_TOKEN }}