Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 397fc64

Browse files
Auto-generated commit
1 parent f3247d5 commit 397fc64

16 files changed

+337
-76
lines changed

‎.github/.keepalive

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2023年10月01日T00:58:29.977Z

‎.github/workflows/benchmark.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,13 @@ jobs:
4141

4242
# Checkout the repository:
4343
- name: 'Checkout repository'
44-
uses: actions/checkout@v3
44+
# Pin action to full length commit SHA corresponding to v4.1.0
45+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
4546

4647
# Install Node.js:
4748
- name: 'Install Node.js'
48-
uses: actions/setup-node@v3
49+
# Pin action to full length commit SHA corresponding to v3.8.1
50+
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
4951
with:
5052
node-version: 16
5153
timeout-minutes: 5

‎.github/workflows/cancel.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ jobs:
4444

4545
# Cancel existing workflow runs:
4646
- name: 'Cancel existing workflow runs'
47-
uses: styfle/cancel-workflow-action@0.11.0
47+
# Pin action to full length commit SHA corresponding to v0.11.0
48+
uses: styfle/cancel-workflow-action@b173b6ec0100793626c2d9e6b90435061f4fc3e5
4849
with:
4950
workflow_id: >-
5051
benchmark.yml,

‎.github/workflows/close_pull_requests.yml

Lines changed: 23 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,29 @@ on:
2626

2727
# Workflow jobs:
2828
jobs:
29+
30+
# Define job to close all pull requests:
2931
run:
32+
33+
# Define the type of virtual host machine on which to run the job:
3034
runs-on: ubuntu-latest
35+
36+
# Define the sequence of job steps...
3137
steps:
32-
- uses: superbrothers/close-pull-request@v3
33-
with:
34-
comment: |
35-
Thank you for submitting a pull request. :raised_hands:
36-
37-
We greatly appreciate your willingness to submit a contribution. However, we are not accepting pull requests against this repository, as all development happens on the [main project repository](https://github.com/stdlib-js/stdlib).
38-
39-
We kindly request that you submit this pull request against the [respective directory](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/assert/has-sharedarraybuffer-support) of the main repository where we’ll review and provide feedback. If this is your first stdlib contribution, be sure to read the [contributing guide](https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md) which provides guidelines and instructions for submitting contributions.
40-
41-
Thank you again, and we look forward to receiving your contribution! :smiley:
42-
43-
Best,
44-
The stdlib team
38+
39+
# Close pull request
40+
- name: 'Close pull request'
41+
# Pin action to full length commit SHA corresponding to v3.1.2
42+
uses: superbrothers/close-pull-request@9c18513d320d7b2c7185fb93396d0c664d5d8448
43+
with:
44+
comment: |
45+
Thank you for submitting a pull request. :raised_hands:
46+
47+
We greatly appreciate your willingness to submit a contribution. However, we are not accepting pull requests against this repository, as all development happens on the [main project repository](https://github.com/stdlib-js/stdlib).
48+
49+
We kindly request that you submit this pull request against the [respective directory](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/assert/has-sharedarraybuffer-support) of the main repository where we’ll review and provide feedback. If this is your first stdlib contribution, be sure to read the [contributing guide](https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md) which provides guidelines and instructions for submitting contributions.
50+
51+
Thank you again, and we look forward to receiving your contribution! :smiley:
52+
53+
Best,
54+
The stdlib team

‎.github/workflows/examples.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,15 @@ jobs:
3939
# Define the sequence of job steps...
4040
steps:
4141

42-
# Checkout the repository:
43-
- name: 'Checkout the repository'
44-
uses: actions/checkout@v3
42+
# Checkout repository:
43+
- name: 'Checkout repository'
44+
# Pin action to full length commit SHA corresponding to v4.1.0
45+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
4546

4647
# Install Node.js:
4748
- name: 'Install Node.js'
48-
uses: actions/setup-node@v3
49+
# Pin action to full length commit SHA corresponding to v3.8.1
50+
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
4951
with:
5052
node-version: 16
5153
timeout-minutes: 5

‎.github/workflows/npm_downloads.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,14 @@ jobs:
4545
steps:
4646
# Checkout the repository:
4747
- name: 'Checkout repository'
48-
uses: actions/checkout@v3
48+
# Pin action to full length commit SHA corresponding to v4.1.0
49+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
4950
timeout-minutes: 10
5051

5152
# Install Node.js:
5253
- name: 'Install Node.js'
53-
uses: actions/setup-node@v3
54+
# Pin action to full length commit SHA corresponding to v3.8.1
55+
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
5456
with:
5557
node-version: 16
5658
timeout-minutes: 5
@@ -84,7 +86,8 @@ jobs:
8486
8587
# Upload the download data:
8688
- name: 'Upload data'
87-
uses: actions/upload-artifact@v3
89+
# Pin action to full length commit SHA corresponding to v3.1.3
90+
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32
8891
with:
8992
# Define a name for the uploaded artifact (ensuring a unique name for each job):
9093
name: npm_downloads
@@ -99,7 +102,8 @@ jobs:
99102

100103
# Send data to events server:
101104
- name: 'Post data'
102-
uses: distributhor/workflow-webhook@v3
105+
# Pin action to full length commit SHA corresponding to v3.0.3:
106+
uses: distributhor/workflow-webhook@48a40b380ce4593b6a6676528cd005986ae56629
103107
env:
104108
webhook_url: ${{ secrets.STDLIB_NPM_DOWNLOADS_URL }}
105109
webhook_secret: ${{ secrets.STDLIB_WEBHOOK_SECRET }}

‎.github/workflows/productionize.yml

Lines changed: 34 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,15 @@ jobs:
6060
steps:
6161
# Checkout main branch of repository:
6262
- name: 'Checkout main branch'
63-
uses: actions/checkout@v3
63+
# Pin action to full length commit SHA corresponding to v4.1.0
64+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
6465
with:
6566
ref: main
6667

6768
# Install Node.js:
6869
- name: 'Install Node.js'
69-
uses: actions/setup-node@v3
70+
# Pin action to full length commit SHA corresponding to v3.8.1
71+
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
7072
with:
7173
node-version: 16
7274
timeout-minutes: 5
@@ -131,15 +133,17 @@ jobs:
131133
# Checkout the repository:
132134
- name: 'Checkout repository'
133135
if: ${{ github.event.inputs.require-passing-tests == 'true' }}
134-
uses: actions/checkout@v3
136+
# Pin action to full length commit SHA corresponding to v4.1.0
137+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
135138
with:
136139
# Use the `production` branch:
137140
ref: production
138141

139142
# Install Node.js:
140143
- name: 'Install Node.js'
141144
if: ${{ github.event.inputs.require-passing-tests == 'true' }}
142-
uses: actions/setup-node@v3
145+
# Pin action to full length commit SHA corresponding to v3.8.1
146+
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
143147
with:
144148
node-version: 16
145149
timeout-minutes: 5
@@ -183,7 +187,8 @@ jobs:
183187
steps:
184188
# Checkout the repository:
185189
- name: 'Checkout repository'
186-
uses: actions/checkout@v3
190+
# Pin action to full length commit SHA corresponding to v4.1.0
191+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
187192

188193
# Configure git:
189194
- name: 'Configure git'
@@ -250,7 +255,8 @@ jobs:
250255
251256
# Install Node.js:
252257
- name: 'Install Node.js'
253-
uses: actions/setup-node@v3
258+
# Pin action to full length commit SHA corresponding to v3.8.1
259+
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
254260
with:
255261
node-version: 16
256262
timeout-minutes: 5
@@ -333,7 +339,8 @@ jobs:
333339
334340
# Send status to Slack channel if job fails:
335341
- name: 'Send status to Slack channel in case of failure'
336-
uses: act10ns/slack@v2
342+
# Pin action to full length commit SHA corresponding to v2.0.0
343+
uses: act10ns/slack@ed1309ab9862e57e9e583e51c7889486b9a00b0f
337344
with:
338345
status: ${{ job.status }}
339346
steps: ${{ toJson(steps) }}
@@ -356,7 +363,8 @@ jobs:
356363
steps:
357364
# Checkout the repository:
358365
- name: 'Checkout repository'
359-
uses: actions/checkout@v3
366+
# Pin action to full length commit SHA corresponding to v4.1.0
367+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
360368

361369
# Configure git:
362370
- name: 'Configure git'
@@ -415,7 +423,8 @@ jobs:
415423
416424
# Install Node.js
417425
- name: 'Install Node.js'
418-
uses: actions/setup-node@v3
426+
# Pin action to full length commit SHA corresponding to v3.8.1
427+
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
419428
with:
420429
node-version: 16
421430
timeout-minutes: 5
@@ -503,7 +512,8 @@ jobs:
503512
504513
# Send status to Slack channel if job fails:
505514
- name: 'Send status to Slack channel in case of failure'
506-
uses: act10ns/slack@v2
515+
# Pin action to full length commit SHA corresponding to v2.0.0
516+
uses: act10ns/slack@ed1309ab9862e57e9e583e51c7889486b9a00b0f
507517
with:
508518
status: ${{ job.status }}
509519
steps: ${{ toJson(steps) }}
@@ -526,7 +536,8 @@ jobs:
526536
steps:
527537
# Checkout the repository:
528538
- name: 'Checkout repository'
529-
uses: actions/checkout@v3
539+
# Pin action to full length commit SHA corresponding to v4.1.0
540+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
530541

531542
# Configure git:
532543
- name: 'Configure git'
@@ -593,7 +604,8 @@ jobs:
593604
594605
# Install Node.js:
595606
- name: 'Install Node.js'
596-
uses: actions/setup-node@v3
607+
# Pin action to full length commit SHA corresponding to v3.8.1
608+
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
597609
with:
598610
node-version: 16
599611
timeout-minutes: 5
@@ -679,7 +691,8 @@ jobs:
679691
680692
# Send status to Slack channel if job fails:
681693
- name: 'Send status to Slack channel in case of failure'
682-
uses: act10ns/slack@v2
694+
# Pin action to full length commit SHA corresponding to v2.0.0
695+
uses: act10ns/slack@ed1309ab9862e57e9e583e51c7889486b9a00b0f
683696
with:
684697
status: ${{ job.status }}
685698
steps: ${{ toJson(steps) }}
@@ -702,7 +715,8 @@ jobs:
702715
steps:
703716
# Checkout the repository:
704717
- name: 'Checkout repository'
705-
uses: actions/checkout@v3
718+
# Pin action to full length commit SHA corresponding to v4.1.0
719+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
706720

707721
# Configure git:
708722
- name: 'Configure git'
@@ -768,7 +782,8 @@ jobs:
768782
769783
# Install Node.js:
770784
- name: 'Install Node.js'
771-
uses: actions/setup-node@v3
785+
# Pin action to full length commit SHA corresponding to v3.8.1
786+
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
772787
with:
773788
node-version: 16
774789
timeout-minutes: 5
@@ -871,7 +886,8 @@ jobs:
871886
872887
# Send status to Slack channel if job fails:
873888
- name: 'Send status to Slack channel in case of failure'
874-
uses: act10ns/slack@v2
889+
# Pin action to full length commit SHA corresponding to v2.0.0
890+
uses: act10ns/slack@ed1309ab9862e57e9e583e51c7889486b9a00b0f
875891
with:
876892
status: ${{ job.status }}
877893
steps: ${{ toJson(steps) }}
@@ -895,7 +911,8 @@ jobs:
895911

896912
# Checkout the repository:
897913
- name: 'Checkout repository'
898-
uses: actions/checkout@v3
914+
# Pin action to full length commit SHA corresponding to v4.1.0
915+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
899916
with:
900917
fetch-depth: 2
901918

‎.github/workflows/publish.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,13 @@ jobs:
6161

6262
# Checkout the repository:
6363
- name: 'Checkout repository'
64-
uses: actions/checkout@v3
64+
# Pin action to full length commit SHA corresponding to v4.1.0
65+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
6566

6667
# Install Node.js:
6768
- name: 'Install Node.js'
68-
uses: actions/setup-node@v3
69+
# Pin action to full length commit SHA corresponding to v3.8.1
70+
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
6971
with:
7072
node-version: 16
7173
timeout-minutes: 5
@@ -197,7 +199,8 @@ jobs:
197199
198200
# Publish package to npm:
199201
- name: 'Publish package to npm'
200-
uses: JS-DevTools/npm-publish@v2
202+
# Pin action to full length commit SHA corresponding to v2.2.2
203+
uses: JS-DevTools/npm-publish@fe72237be0920f7a0cafd6a966c9b929c9466e9b
201204
with:
202205
token: ${{ secrets.NPM_TOKEN }}
203206
access: public
@@ -209,7 +212,8 @@ jobs:
209212
210213
# Send status to Slack channel if job fails:
211214
- name: 'Send status to Slack channel in case of failure'
212-
uses: act10ns/slack@v2
215+
# Pin action to full length commit SHA corresponding to v2.0.0
216+
uses: act10ns/slack@ed1309ab9862e57e9e583e51c7889486b9a00b0f
213217
with:
214218
status: ${{ job.status }}
215219
steps: ${{ toJson(steps) }}
@@ -230,7 +234,8 @@ jobs:
230234

231235
# Cancel any running or queued workflow runs:
232236
- name: 'Cancel running or queued workflow runs'
233-
uses: styfle/cancel-workflow-action@0.11.0
237+
# Pin action to full length commit SHA corresponding to v0.11.0
238+
uses: styfle/cancel-workflow-action@b173b6ec0100793626c2d9e6b90435061f4fc3e5
234239
with:
235240
workflow_id: >-
236241
benchmark.yml,

‎.github/workflows/publish_cli.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,15 @@ jobs:
6161

6262
# Checkout cli branch:
6363
- name: 'Checkout cli branch'
64-
uses: actions/checkout@v3
64+
# Pin action to full length commit SHA corresponding to v4.1.0
65+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
6566
with:
6667
ref: cli
6768

6869
# Install Node.js:
6970
- name: 'Install Node.js'
70-
uses: actions/setup-node@v3
71+
# Pin action to full length commit SHA corresponding to v3.8.1
72+
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
7173
with:
7274
node-version: 16
7375
timeout-minutes: 5
@@ -120,7 +122,8 @@ jobs:
120122
121123
# Publish package to npm:
122124
- name: 'Publish package to npm'
123-
uses: JS-DevTools/npm-publish@v2
125+
# Pin action to full length commit SHA corresponding to v2.2.2
126+
uses: JS-DevTools/npm-publish@fe72237be0920f7a0cafd6a966c9b929c9466e9b
124127
with:
125128
token: ${{ secrets.NPM_TOKEN }}
126129
access: public
@@ -132,7 +135,8 @@ jobs:
132135
133136
# Send status to Slack channel if job fails:
134137
- name: 'Send status to Slack channel in case of failure'
135-
uses: act10ns/slack@v2
138+
# Pin action to full length commit SHA corresponding to v2.0.0
139+
uses: act10ns/slack@ed1309ab9862e57e9e583e51c7889486b9a00b0f
136140
with:
137141
status: ${{ job.status }}
138142
steps: ${{ toJson(steps) }}
@@ -153,7 +157,8 @@ jobs:
153157

154158
# Cancel any running or queued workflow runs:
155159
- name: 'Cancel running or queued workflow runs'
156-
uses: styfle/cancel-workflow-action@0.11.0
160+
# Pin action to full length commit SHA corresponding to v0.11.0
161+
uses: styfle/cancel-workflow-action@b173b6ec0100793626c2d9e6b90435061f4fc3e5
157162
with:
158163
workflow_id: >-
159164
benchmark.yml,

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /