chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
name: "setup-node"
|
||||
description: "Set up Node"
|
||||
inputs:
|
||||
node-version:
|
||||
description: "Node version to use."
|
||||
default: "24"
|
||||
required: false
|
||||
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
|
||||
with:
|
||||
node-version: ${{ inputs.node-version }}
|
||||
- run: |
|
||||
# allowScripts opt-in install-script policy requires npm >= 11.16.0
|
||||
# (https://github.com/npm/cli/pull/9360)
|
||||
npm install -g npm@"^11.16.0"
|
||||
shell: bash
|
||||
Reference in New Issue
Block a user