Skip to content

Commit 96dcd1e

Browse files
committed
Auto-generated commit
1 parent f2fbaf2 commit 96dcd1e

File tree

12 files changed

+124
-42
lines changed

12 files changed

+124
-42
lines changed

.github/.keepalive

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2023-10-01T01:48:32.914Z

.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/napi/argv-float64array) 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/napi/argv-float64array) 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/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/test.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,13 @@ jobs:
5858

5959
# Checkout the repository:
6060
- name: 'Checkout repository'
61-
uses: actions/checkout@v3
61+
# Pin action to full length commit SHA corresponding to v4.1.0
62+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
6263

6364
# Install Node.js:
6465
- name: 'Install Node.js'
65-
uses: actions/setup-node@v3
66+
# Pin action to full length commit SHA corresponding to v3.8.1
67+
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
6668
with:
6769
node-version: 16
6870
timeout-minutes: 5
@@ -89,7 +91,8 @@ jobs:
8991
9092
# Send status to Slack channel if job fails:
9193
- name: 'Send status to Slack channel in case of failure'
92-
uses: act10ns/slack@v2
94+
# Pin action to full length commit SHA corresponding to v2.0.0
95+
uses: act10ns/slack@ed1309ab9862e57e9e583e51c7889486b9a00b0f
9396
with:
9497
status: ${{ job.status }}
9598
steps: ${{ toJson(steps) }}

.github/workflows/test_coverage.yml

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

4747
# Checkout the repository:
4848
- name: 'Checkout repository'
49-
uses: actions/checkout@v3
49+
# Pin action to full length commit SHA corresponding to v4.1.0
50+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
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
@@ -77,7 +79,8 @@ jobs:
7779
# Upload coverage report to Codecov:
7880
- name: 'Upload coverage to Codecov'
7981
id: upload
80-
uses: codecov/codecov-action@v3
82+
# Pin action to full length commit SHA corresponding to v3.1.4
83+
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d
8184
with:
8285
directory: reports/coverage
8386
flags: unittests
@@ -106,7 +109,8 @@ jobs:
106109
107110
# Send Slack notification if job fails:
108111
- name: 'Send status to Slack channel in case of failure'
109-
uses: act10ns/slack@v2
112+
# Pin action to full length commit SHA corresponding to v2.0.0
113+
uses: act10ns/slack@ed1309ab9862e57e9e583e51c7889486b9a00b0f
110114
with:
111115
status: ${{ job.status }}
112116
steps: ${{ toJson(steps) }}
@@ -115,7 +119,8 @@ jobs:
115119

116120
# Send data to events server:
117121
- name: 'Post data'
118-
uses: distributhor/workflow-webhook@v3
122+
# Pin action to full length commit SHA corresponding to v3.0.3:
123+
uses: distributhor/workflow-webhook@48a40b380ce4593b6a6676528cd005986ae56629
119124
env:
120125
webhook_url: ${{ secrets.STDLIB_COVERAGE_URL }}
121126
webhook_secret: ${{ secrets.STDLIB_WEBHOOK_SECRET }}

.github/workflows/test_install.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,13 @@ jobs:
5858

5959
# Checkout the repository:
6060
- name: 'Checkout repository'
61-
uses: actions/checkout@v3
61+
# Pin action to full length commit SHA corresponding to v4.1.0
62+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
6263

6364
# Install Node.js:
6465
- name: 'Install Node.js'
65-
uses: actions/setup-node@v3
66+
# Pin action to full length commit SHA corresponding to v3.8.1
67+
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
6668
with:
6769
node-version: 16
6870
timeout-minutes: 5
@@ -75,7 +77,8 @@ jobs:
7577

7678
# Send Slack notification if job fails:
7779
- name: 'Send notification to Slack in case of failure'
78-
uses: act10ns/slack@v2
80+
# Pin action to full length commit SHA corresponding to v2.0.0
81+
uses: act10ns/slack@ed1309ab9862e57e9e583e51c7889486b9a00b0f
7982
with:
8083
status: ${{ job.status }}
8184
steps: ${{ toJson(steps) }}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,8 +299,8 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
299299
[npm-image]: http://img.shields.io/npm/v/@stdlib/napi-argv-float64array.svg
300300
[npm-url]: https://npmjs.org/package/@stdlib/napi-argv-float64array
301301
302-
[test-image]: https://github.com/stdlib-js/napi-argv-float64array/actions/workflows/test.yml/badge.svg?branch=v0.1.0
303-
[test-url]: https://github.com/stdlib-js/napi-argv-float64array/actions/workflows/test.yml?query=branch:v0.1.0
302+
[test-image]: https://github.com/stdlib-js/napi-argv-float64array/actions/workflows/test.yml/badge.svg?branch=main
303+
[test-url]: https://github.com/stdlib-js/napi-argv-float64array/actions/workflows/test.yml?query=branch:main
304304
305305
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/napi-argv-float64array/main.svg
306306
[coverage-url]: https://codecov.io/github/stdlib-js/napi-argv-float64array?branch=main

0 commit comments

Comments
 (0)