68
68
69
69
# Install Node.js:
70
70
- name : ' Install Node.js'
71
- # Pin action to full length commit SHA corresponding to v3.8.1
72
- uses : actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
71
+ # Pin action to full length commit SHA
72
+ uses : actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
73
73
with :
74
74
node-version : 20
75
75
timeout-minutes : 5
@@ -143,8 +143,8 @@ jobs:
143
143
# Install Node.js:
144
144
- name : ' Install Node.js'
145
145
if : ${{ github.event.inputs.require-passing-tests == 'true' }}
146
- # Pin action to full length commit SHA corresponding to v3.8.1
147
- uses : actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
146
+ # Pin action to full length commit SHA
147
+ uses : actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
148
148
with :
149
149
node-version : 20
150
150
timeout-minutes : 5
@@ -256,8 +256,8 @@ jobs:
256
256
257
257
# Install Node.js:
258
258
- name : ' Install Node.js'
259
- # Pin action to full length commit SHA corresponding to v3.8.1
260
- uses : actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
259
+ # Pin action to full length commit SHA
260
+ uses : actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
261
261
with :
262
262
node-version : 20
263
263
timeout-minutes : 5
@@ -283,7 +283,7 @@ jobs:
283
283
find ./deno -type f -name '*.md' -print0 | xargs -0 sed -Ei "/\/tree\/main/b; /^\[@stdlib[^:]+: https:\/\/github.com\/stdlib-js\// s/(.*)/\\1\/tree\/deno/";
284
284
285
285
# Replace reference to `@stdlib/types` with CDN link:
286
- find ./deno -type f -name '*.ts' -print0 | xargs -0 sed -Ei "s/\/\/\/ <reference types=\"@stdlib\/types\"\/>/\/\/\/ <reference types=\"https:\/\/cdn.jsdelivr.net\/gh\/stdlib-js\/types@main\/index.d.ts\"\/>/g"
286
+ find ./deno -type f -name '*.ts' -print0 | xargs -0 -r sed -Ei "s/\/\/\/ <reference types=\"@stdlib\/types\"\/>/\/\/\/ <reference types=\"https:\/\/cdn.jsdelivr.net\/gh\/stdlib-js\/types@main\/index.d.ts\"\/>/g"
287
287
288
288
# Change wording of project description to avoid reference to JavaScript and Node.js:
289
289
find ./deno -type f -name '*.md' -print0 | xargs -0 sed -Ei "s/a standard library for JavaScript and Node.js, /a standard library /g"
@@ -424,8 +424,8 @@ jobs:
424
424
425
425
# Install Node.js
426
426
- name : ' Install Node.js'
427
- # Pin action to full length commit SHA corresponding to v3.8.1
428
- uses : actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
427
+ # Pin action to full length commit SHA
428
+ uses : actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
429
429
with :
430
430
node-version : 20
431
431
timeout-minutes : 5
@@ -606,8 +606,8 @@ jobs:
606
606
607
607
# Install Node.js:
608
608
- name : ' Install Node.js'
609
- # Pin action to full length commit SHA corresponding to v3.8.1
610
- uses : actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
609
+ # Pin action to full length commit SHA
610
+ uses : actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
611
611
with :
612
612
node-version : 20
613
613
timeout-minutes : 5
@@ -634,7 +634,7 @@ jobs:
634
634
find ./esm -type f -name '*.md' -print0 | xargs -0 sed -Ei "/\/tree\/main/b; /^\[@stdlib[^:]+: https:\/\/github.com\/stdlib-js\// s/(.*)/\\1\/tree\/esm/";
635
635
636
636
# Replace reference to `@stdlib/types` with esm link:
637
- find ./esm -type f -name '*.ts' -print0 | xargs -0 sed -Ei "s/\/\/\/ <reference types=\"@stdlib\/types\"\/>/\/\/\/ <reference types=\"https:\/\/cdn.jsdelivr.net\/gh\/stdlib-js\/types@esm\/index.d.ts\"\/>/g"
637
+ find ./esm -type f -name '*.ts' -print0 | xargs -0 -r sed -Ei "s/\/\/\/ <reference types=\"@stdlib\/types\"\/>/\/\/\/ <reference types=\"https:\/\/cdn.jsdelivr.net\/gh\/stdlib-js\/types@esm\/index.d.ts\"\/>/g"
638
638
639
639
# Change wording of project description to avoid reference to JavaScript and Node.js:
640
640
find ./esm -type f -name '*.md' -print0 | xargs -0 sed -Ei "s/a standard library for JavaScript and Node.js, /a standard library /g"
0 commit comments