Skip to content

Navigation Menu

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

Appearance settings

Commit c2addb9

Browse filesBrowse files
committed
Auto-generated commit
1 parent ce5e036 commit c2addb9
Copy full SHA for c2addb9

12 files changed

+37
-36
lines changed

‎.github/.keepalive

Copy file name to clipboard
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2022-10-01T02:13:27.187Z
1+
2022-11-01T01:58:36.643Z

‎.github/workflows/benchmark.yml

Copy file name to clipboardExpand all lines: .github/workflows/benchmark.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545

4646
# Install Node.js:
4747
- name: 'Install Node.js'
48-
uses: actions/setup-node@v2
48+
uses: actions/setup-node@v3
4949
with:
5050
node-version: 16
5151
timeout-minutes: 5

‎.github/workflows/cancel.yml

Copy file name to clipboardExpand all lines: .github/workflows/cancel.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444

4545
# Cancel existing workflow runs:
4646
- name: 'Cancel existing workflow runs'
47-
uses: styfle/cancel-workflow-action@0.9.0
47+
uses: styfle/cancel-workflow-action@0.11.0
4848
with:
4949
workflow_id: >-
5050
benchmark.yml,

‎.github/workflows/examples.yml

Copy file name to clipboardExpand all lines: .github/workflows/examples.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545

4646
# Install Node.js:
4747
- name: 'Install Node.js'
48-
uses: actions/setup-node@v2
48+
uses: actions/setup-node@v3
4949
with:
5050
node-version: 16
5151
timeout-minutes: 5

‎.github/workflows/npm_downloads.yml

Copy file name to clipboardExpand all lines: .github/workflows/npm_downloads.yml
+6-6Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ on:
2424
# Run this workflow weekly:
2525
schedule:
2626
# cron: '<minutes> <hours> <day_of_month> <month> <day_of_week>'
27-
- cron: '0 8 * * 6'
27+
- cron: '46 22 * * 1'
2828

2929
# Allow the workflow to be manually run:
3030
workflow_dispatch:
@@ -50,7 +50,7 @@ jobs:
5050

5151
# Install Node.js:
5252
- name: 'Install Node.js'
53-
uses: actions/setup-node@v2
53+
uses: actions/setup-node@v3
5454
with:
5555
node-version: 16
5656
timeout-minutes: 5
@@ -60,7 +60,7 @@ jobs:
6060
id: package_name
6161
run: |
6262
name=`node -e 'console.log(require("./package.json").name)' | tr -d '\n'`
63-
echo "::set-output name=package_name::$name"
63+
echo "package_name=$name" >> $GITHUB_OUTPUT
6464
timeout-minutes: 5
6565

6666
# Fetch download data:
@@ -72,7 +72,7 @@ jobs:
7272
data=$(curl "$url")
7373
mkdir ./tmp
7474
echo "$data" > ./tmp/npm_downloads.json
75-
echo "::set-output name=data::$data"
75+
echo "data=$data" >> $GITHUB_OUTPUT
7676
timeout-minutes: 5
7777

7878
# Print summary of download data:
@@ -84,7 +84,7 @@ jobs:
8484
8585
# Upload the download data:
8686
- name: 'Upload data'
87-
uses: actions/upload-artifact@v2
87+
uses: actions/upload-artifact@v3
8888
with:
8989
# Define a name for the uploaded artifact (ensuring a unique name for each job):
9090
name: npm_downloads
@@ -99,7 +99,7 @@ jobs:
9999

100100
# Send data to events server:
101101
- name: 'Post data'
102-
uses: distributhor/workflow-webhook@v2
102+
uses: distributhor/workflow-webhook@v3
103103
env:
104104
webhook_url: ${{ secrets.STDLIB_NPM_DOWNLOADS_URL }}
105105
webhook_secret: ${{ secrets.STDLIB_WEBHOOK_SECRET }}

‎.github/workflows/productionize.yml

Copy file name to clipboardExpand all lines: .github/workflows/productionize.yml
+14-14Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
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:

‎.github/workflows/publish.yml

Copy file name to clipboardExpand all lines: .github/workflows/publish.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050

5151
# Install Node.js:
5252
- name: 'Install Node.js'
53-
uses: actions/setup-node@v2
53+
uses: actions/setup-node@v3
5454
with:
5555
node-version: 16
5656
timeout-minutes: 5
@@ -105,7 +105,7 @@ jobs:
105105

106106
# Cancel any running or queued workflow runs:
107107
- name: 'Cancel running or queued workflow runs'
108-
uses: styfle/cancel-workflow-action@0.9.0
108+
uses: styfle/cancel-workflow-action@0.11.0
109109
with:
110110
workflow_id: >-
111111
benchmark.yml,

‎.github/workflows/test.yml

Copy file name to clipboardExpand all lines: .github/workflows/test.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ on:
2424
# Run workflow on a weekly schedule:
2525
schedule:
2626
# * is a special character in YAML so you have to quote this string
27-
- cron: '30 1 * * 6'
27+
- cron: '46 22 * * 1'
2828

2929
# Allow the workflow to be manually run:
3030
workflow_dispatch:
@@ -57,7 +57,7 @@ jobs:
5757

5858
# Install Node.js:
5959
- name: 'Install Node.js'
60-
uses: actions/setup-node@v2
60+
uses: actions/setup-node@v3
6161
with:
6262
node-version: 16
6363
timeout-minutes: 5

‎.github/workflows/test_bundles.yml

Copy file name to clipboardExpand all lines: .github/workflows/test_bundles.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555

5656
# Install Node.js:
5757
- name: 'Install Node.js'
58-
uses: actions/setup-node@v2
58+
uses: actions/setup-node@v3
5959
with:
6060
node-version: 17
6161

@@ -119,7 +119,7 @@ jobs:
119119

120120
# Install Node.js:
121121
- name: 'Install Node.js'
122-
uses: actions/setup-node@v2
122+
uses: actions/setup-node@v3
123123
with:
124124
node-version: 17
125125

‎.github/workflows/test_coverage.yml

Copy file name to clipboardExpand all lines: .github/workflows/test_coverage.yml
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050

5151
# Install Node.js:
5252
- name: 'Install Node.js'
53-
uses: actions/setup-node@v2
53+
uses: actions/setup-node@v3
5454
with:
5555
node-version: 16
5656
timeout-minutes: 5
@@ -88,11 +88,11 @@ jobs:
8888
id: extract-coverage
8989
run: |
9090
coverage=`cat reports/coverage/lcov-report/index.html | grep "fraction" | grep -oP '\d+/\d+' | printf %s "$(cat)" | jq -R -s -c 'split("\n")'`
91-
echo "::set-output name=coverage::$coverage"
91+
echo "coverage=$coverage" >> $GITHUB_OUTPUT
9292
9393
# Format coverage as Markdown table row:
9494
table=`echo $coverage | sed -e 's/,/|/g; s/"/ /g; s/\[/|/; s/\]/|/'`
95-
echo "::set-output name=table::$table"
95+
echo "table=$table" >> $GITHUB_OUTPUT
9696
9797
# Print coverage report to GitHub Actions log:
9898
- name: 'Print coverage report to GitHub Actions log'
@@ -115,7 +115,7 @@ jobs:
115115

116116
# Send data to events server:
117117
- name: 'Post data'
118-
uses: distributhor/workflow-webhook@v2
118+
uses: distributhor/workflow-webhook@v3
119119
env:
120120
webhook_url: ${{ secrets.STDLIB_COVERAGE_URL }}
121121
webhook_secret: ${{ secrets.STDLIB_WEBHOOK_SECRET }}

‎.github/workflows/test_install.yml

Copy file name to clipboardExpand all lines: .github/workflows/test_install.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ on:
2424
# Run workflow on a weekly schedule:
2525
schedule:
2626
# * is a special character in YAML so you have to quote this string
27-
- cron: '30 1 * * 6'
27+
- cron: '46 22 * * 1'
2828

2929
# Run workflow upon completion of `publish` workflow run:
3030
workflow_run:
@@ -62,7 +62,7 @@ jobs:
6262

6363
# Install Node.js:
6464
- name: 'Install Node.js'
65-
uses: actions/setup-node@v2
65+
uses: actions/setup-node@v3
6666
with:
6767
node-version: 16
6868
timeout-minutes: 5

‎CONTRIBUTORS

Copy file name to clipboardExpand all lines: CONTRIBUTORS
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Milan Raj <rajsite@users.noreply.github.com>
2020
Momtchil Momtchev <momtchil@momtchev.com>
2121
Ognjen Jevremović <ognjenjevremovic@users.noreply.github.com>
2222
Philipp Burckhardt <pburckhardt@outlook.com>
23+
Pranav <85227306+Pranavchiku@users.noreply.github.com>
2324
Ricky Reusser <rsreusser@gmail.com>
2425
Ryan Seal <splrk@users.noreply.github.com>
2526
Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.