5656
5757 # Install Node.js:
5858 - name : ' Install Node.js'
59- uses : actions/setup-node@v2
59+ uses : actions/setup-node@v3
6060 with :
6161 node-version : 16
6262 timeout-minutes : 5
@@ -141,7 +141,7 @@ jobs:
141141
142142 # Install Node.js:
143143 - name : ' Install Node.js'
144- uses : actions/setup-node@v2
144+ uses : actions/setup-node@v3
145145 with :
146146 node-version : 16
147147 timeout-minutes : 5
@@ -198,9 +198,9 @@ jobs:
198198 git fetch --all
199199 git ls-remote --exit-code --heads origin deno
200200 if [ $? -eq 0 ]; then
201- echo "::set-output name= remote-exists:: true"
201+ echo "remote-exists= true" >> $GITHUB_OUTPUT
202202 else
203- echo "::set-output name= remote-exists:: false"
203+ echo "remote-exists= false" >> $GITHUB_OUTPUT
204204 fi
205205
206206 # If `deno` exists, delete everything in branch and merge `production` into it
@@ -242,7 +242,7 @@ jobs:
242242
243243 # Install Node.js:
244244 - name : ' Install Node.js'
245- uses : actions/setup-node@v2
245+ uses : actions/setup-node@v3
246246 with :
247247 node-version : 16
248248 timeout-minutes : 5
@@ -364,9 +364,9 @@ jobs:
364364 git fetch --all
365365 git ls-remote --exit-code --heads origin umd
366366 if [ $? -eq 0 ]; then
367- echo "::set-output name= remote-exists:: true"
367+ echo "remote-exists= true" >> $GITHUB_OUTPUT
368368 else
369- echo "::set-output name= remote-exists:: false"
369+ echo "remote-exists= false" >> $GITHUB_OUTPUT
370370 fi
371371
372372 # If `umd` exists, delete everything in branch and merge `production` into it
@@ -400,7 +400,7 @@ jobs:
400400
401401 # Install Node.js
402402 - name : ' Install Node.js'
403- uses : actions/setup-node@v2
403+ uses : actions/setup-node@v3
404404 with :
405405 node-version : 16
406406 timeout-minutes : 5
@@ -417,7 +417,7 @@ jobs:
417417 id : extract-alias
418418 run : |
419419 alias=$(grep -E 'require\(' README.md | head -n 1 | sed -E 's/^var ([a-zA-Z0-9_]+) = .+/\1/')
420- echo "::set-output name= alias:: ${alias}"
420+ echo "alias= ${alias}" >> $GITHUB_OUTPUT
421421
422422 # Create Universal Module Definition (UMD) Node.js bundle:
423423 - name : ' Create Universal Module Definition (UMD) Node.js bundle'
@@ -528,9 +528,9 @@ jobs:
528528 git fetch --all
529529 git ls-remote --exit-code --heads origin esm
530530 if [ $? -eq 0 ]; then
531- echo "::set-output name= remote-exists:: true"
531+ echo "remote-exists= true" >> $GITHUB_OUTPUT
532532 else
533- echo "::set-output name= remote-exists:: false"
533+ echo "remote-exists= false" >> $GITHUB_OUTPUT
534534 fi
535535
536536 # If `esm` exists, delete everything in branch and merge `production` into it
@@ -572,7 +572,7 @@ jobs:
572572
573573 # Install Node.js:
574574 - name : ' Install Node.js'
575- uses : actions/setup-node@v2
575+ uses : actions/setup-node@v3
576576 with :
577577 node-version : 16
578578 timeout-minutes : 5
@@ -695,10 +695,10 @@ jobs:
695695 VERSION_CHANGE_PKG_JSON=$(git diff HEAD~1 HEAD package.json | grep '"version":')
696696 if [ -z "$VERSION_CHANGE_PKG_JSON" ]; then
697697 echo "This workflow was not triggered by a version bump."
698- echo "::set-output name= bump:: false"
698+ echo "bump= false" >> $GITHUB_OUTPUT
699699 else
700700 echo "This workflow was triggered by a version bump."
701- echo "::set-output name= bump:: true"
701+ echo "bump= true" >> $GITHUB_OUTPUT
702702 fi
703703
704704 # Configure git:
0 commit comments