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 31724b4

Browse files
Auto-generated commit
1 parent 98b120d commit 31724b4

17 files changed

+68
-61
lines changed

‎.github/.keepalive

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2023年12月01日T01:01:53.722Z
1+
2024年01月01日T00:57:36.220Z

‎.github/workflows/benchmark.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ jobs:
4141

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

4747
# Install Node.js:
4848
- name: 'Install Node.js'
4949
# Pin action to full length commit SHA corresponding to v3.8.1
5050
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
5151
with:
52-
node-version: 16
52+
node-version: 20
5353
timeout-minutes: 5
5454

5555
# Install dependencies:

‎.github/workflows/examples.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ jobs:
4141

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

4747
# Install Node.js:
4848
- name: 'Install Node.js'
4949
# Pin action to full length commit SHA corresponding to v3.8.1
5050
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
5151
with:
52-
node-version: 16
52+
node-version: 20
5353
timeout-minutes: 5
5454

5555
# Install dependencies:

‎.github/workflows/npm_downloads.yml

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

5252
# Install Node.js:
5353
- name: 'Install Node.js'
5454
# Pin action to full length commit SHA corresponding to v3.8.1
5555
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
5656
with:
57-
node-version: 16
57+
node-version: 20
5858
timeout-minutes: 5
5959

6060
# Resolve package name:
@@ -102,8 +102,8 @@ jobs:
102102

103103
# Send data to events server:
104104
- name: 'Post data'
105-
# Pin action to full length commit SHA corresponding to v3.0.3:
106-
uses: distributhor/workflow-webhook@48a40b380ce4593b6a6676528cd005986ae56629
105+
# Pin action to full length commit SHA
106+
uses: distributhor/workflow-webhook@48a40b380ce4593b6a6676528cd005986ae56629# v3.0.3
107107
env:
108108
webhook_url: ${{ secrets.STDLIB_NPM_DOWNLOADS_URL }}
109109
webhook_secret: ${{ secrets.STDLIB_WEBHOOK_SECRET }}

‎.github/workflows/productionize.yml

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

@@ -70,7 +70,7 @@ jobs:
7070
# Pin action to full length commit SHA corresponding to v3.8.1
7171
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
7272
with:
73-
node-version: 16
73+
node-version: 20
7474
timeout-minutes: 5
7575

7676
# Create production branch:
@@ -133,8 +133,8 @@ jobs:
133133
# Checkout the repository:
134134
- name: 'Checkout repository'
135135
if: ${{ github.event.inputs.require-passing-tests == 'true' }}
136-
# Pin action to full length commit SHA corresponding to v4.1.0
137-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
136+
# Pin action to full length commit SHA
137+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608# v4.1.0
138138
with:
139139
# Use the `production` branch:
140140
ref: production
@@ -145,7 +145,7 @@ jobs:
145145
# Pin action to full length commit SHA corresponding to v3.8.1
146146
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
147147
with:
148-
node-version: 16
148+
node-version: 20
149149
timeout-minutes: 5
150150

151151
# Install dependencies:
@@ -187,8 +187,8 @@ jobs:
187187
steps:
188188
# Checkout the repository:
189189
- name: 'Checkout repository'
190-
# Pin action to full length commit SHA corresponding to v4.1.0
191-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
190+
# Pin action to full length commit SHA
191+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608# v4.1.0
192192

193193
# Configure git:
194194
- name: 'Configure git'
@@ -258,7 +258,7 @@ jobs:
258258
# Pin action to full length commit SHA corresponding to v3.8.1
259259
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
260260
with:
261-
node-version: 16
261+
node-version: 20
262262
timeout-minutes: 5
263263

264264
# Install dependencies:
@@ -363,8 +363,8 @@ jobs:
363363
steps:
364364
# Checkout the repository:
365365
- name: 'Checkout repository'
366-
# Pin action to full length commit SHA corresponding to v4.1.0
367-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
366+
# Pin action to full length commit SHA
367+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608# v4.1.0
368368

369369
# Configure git:
370370
- name: 'Configure git'
@@ -426,7 +426,7 @@ jobs:
426426
# Pin action to full length commit SHA corresponding to v3.8.1
427427
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
428428
with:
429-
node-version: 16
429+
node-version: 20
430430
timeout-minutes: 5
431431

432432
# Install dependencies:
@@ -536,8 +536,8 @@ jobs:
536536
steps:
537537
# Checkout the repository:
538538
- name: 'Checkout repository'
539-
# Pin action to full length commit SHA corresponding to v4.1.0
540-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
539+
# Pin action to full length commit SHA
540+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608# v4.1.0
541541

542542
# Configure git:
543543
- name: 'Configure git'
@@ -607,7 +607,7 @@ jobs:
607607
# Pin action to full length commit SHA corresponding to v3.8.1
608608
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
609609
with:
610-
node-version: 16
610+
node-version: 20
611611
timeout-minutes: 5
612612

613613
# Install dependencies:
@@ -715,8 +715,8 @@ jobs:
715715
steps:
716716
# Checkout the repository:
717717
- name: 'Checkout repository'
718-
# Pin action to full length commit SHA corresponding to v4.1.0
719-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
718+
# Pin action to full length commit SHA
719+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608# v4.1.0
720720

721721
# Configure git:
722722
- name: 'Configure git'
@@ -787,7 +787,7 @@ jobs:
787787
# Pin action to full length commit SHA corresponding to v3.8.1
788788
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
789789
with:
790-
node-version: 16
790+
node-version: 20
791791
timeout-minutes: 5
792792

793793
# Install dependencies:
@@ -913,8 +913,8 @@ jobs:
913913

914914
# Checkout the repository:
915915
- name: 'Checkout repository'
916-
# Pin action to full length commit SHA corresponding to v4.1.0
917-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
916+
# Pin action to full length commit SHA
917+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608# v4.1.0
918918
with:
919919
fetch-depth: 2
920920

‎.github/workflows/publish.yml

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

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

6767
# Install Node.js:
6868
- name: 'Install Node.js'
6969
# Pin action to full length commit SHA corresponding to v3.8.1
7070
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
7171
with:
72-
node-version: 16
72+
node-version: 20
7373
timeout-minutes: 5
7474

7575
# Configure git:

‎.github/workflows/publish_cli.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ jobs:
6161

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

@@ -71,7 +71,7 @@ jobs:
7171
# Pin action to full length commit SHA corresponding to v3.8.1
7272
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
7373
with:
74-
node-version: 16
74+
node-version: 20
7575
timeout-minutes: 5
7676

7777
# Configure git:

‎.github/workflows/test.yml

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

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

6464
# Install Node.js:
6565
- name: 'Install Node.js'
6666
# Pin action to full length commit SHA corresponding to v3.8.1
6767
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
6868
with:
69-
node-version: 16
69+
node-version: 20
7070
timeout-minutes: 5
7171

7272
# Install dependencies:

‎.github/workflows/test_bundles.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ jobs:
4949
steps:
5050
# Checkout UMD branch of the repository:
5151
- name: 'Checkout branch with UMD build'
52-
# Pin action to full length commit SHA corresponding to v4.1.0
53-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
52+
# Pin action to full length commit SHA
53+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608# v4.1.0
5454
with:
5555
ref: umd
5656

@@ -59,7 +59,7 @@ jobs:
5959
# Pin action to full length commit SHA corresponding to v3.8.1
6060
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
6161
with:
62-
node-version: 17
62+
node-version: 20
6363

6464
# Try loading the UMD bundle:
6565
- name: 'Try loading UMD bundle'
@@ -116,8 +116,8 @@ jobs:
116116

117117
# Checkout ES modules branch of the repository:
118118
- name: 'Checkout branch with ESM build'
119-
# Pin action to full length commit SHA corresponding to v4.1.0
120-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
119+
# Pin action to full length commit SHA
120+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608# v4.1.0
121121
with:
122122
ref: esm
123123

@@ -126,7 +126,7 @@ jobs:
126126
# Pin action to full length commit SHA corresponding to v3.8.1
127127
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
128128
with:
129-
node-version: 17
129+
node-version: 20
130130

131131
# Try loading the ES module bundle:
132132
- name: 'Try loading ESM'
@@ -161,8 +161,8 @@ jobs:
161161

162162
# Checkout Deno branch of the repository:
163163
- name: 'Checkout branch with Deno build'
164-
# Pin action to full length commit SHA corresponding to v4.1.0
165-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
164+
# Pin action to full length commit SHA
165+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608# v4.1.0
166166
with:
167167
ref: deno
168168

‎.github/workflows/test_coverage.yml

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

4747
# Checkout the repository:
4848
- name: 'Checkout repository'
49-
# Pin action to full length commit SHA corresponding to v4.1.0
50-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
49+
# Pin action to full length commit SHA
50+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608# v4.1.0
5151

5252
# Install Node.js:
5353
- name: 'Install Node.js'
5454
# Pin action to full length commit SHA corresponding to v3.8.1
5555
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
5656
with:
57-
node-version: 16
57+
node-version: 20
5858
timeout-minutes: 5
5959

6060
# Install dependencies:
@@ -119,8 +119,8 @@ jobs:
119119

120120
# Send data to events server:
121121
- name: 'Post data'
122-
# Pin action to full length commit SHA corresponding to v3.0.3:
123-
uses: distributhor/workflow-webhook@48a40b380ce4593b6a6676528cd005986ae56629
122+
# Pin action to full length commit SHA
123+
uses: distributhor/workflow-webhook@48a40b380ce4593b6a6676528cd005986ae56629# v3.0.3
124124
env:
125125
webhook_url: ${{ secrets.STDLIB_COVERAGE_URL }}
126126
webhook_secret: ${{ secrets.STDLIB_WEBHOOK_SECRET }}

0 commit comments

Comments
(0)

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