Skip to content

Commit 06676df

Browse files
Merge pull request #1012 from nodejs/main
Create a new pull request by comparing changes across two branches
2 parents 2756614 + 2b41c23 commit 06676df

File tree

144 files changed

+2914
-1478
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+2914
-1478
lines changed

.github/label-pr-config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ subSystemLabels:
8181
/^deps\/nghttp2\/nghttp2\.gyp/: build, http2
8282
/^deps\/nghttp2\//: http2
8383
/^deps\/ngtcp2\//: quic
84+
/^deps\/amaro\//: strip-types
8485
/^deps\/([^/]+)/: dependencies, $1
8586

8687
## JS subsystems
@@ -122,6 +123,7 @@ exlusiveLabels:
122123
/^test\/fixtures\/es-module/: test, esm
123124
/^test\/es-module\//: test, esm
124125
/^test\/fixtures\/wpt\/streams\//: test, web streams
126+
/^test\/fixtures\/typescript/: test, strip-types
125127

126128
/^test\//: test
127129

@@ -141,6 +143,8 @@ exlusiveLabels:
141143
# Add deprecations label to PRs that affect doc/api/deprecations.md
142144
/^doc\/api\/deprecations.md$/: doc, deprecations
143145
/^doc\/changelogs\//: release
146+
# Specific map for typescript.md as it should be labeled 'strip-types'
147+
/^doc\/api\/typescript.md$/: doc, strip-types
144148

145149
/^doc\//: doc
146150

@@ -190,6 +194,7 @@ allJsSubSystems:
190194
- sqlite
191195
- stream
192196
- string_decoder
197+
- strip-types
193198
- timers
194199
- tls
195200
- trace_events

.github/workflows/auto-start-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
persist-credentials: false
5151

5252
- name: Install Node.js
53-
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
53+
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
5454
with:
5555
node-version: ${{ env.NODE_VERSION }}
5656

.github/workflows/build-tarball.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
with:
4747
persist-credentials: false
4848
- name: Set up Python ${{ env.PYTHON_VERSION }}
49-
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
49+
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
5050
with:
5151
python-version: ${{ env.PYTHON_VERSION }}
5252
- name: Set up sccache
@@ -64,7 +64,7 @@ jobs:
6464
mkdir tarballs
6565
mv *.tar.gz tarballs
6666
- name: Upload tarball artifact
67-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
67+
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
6868
with:
6969
name: tarballs
7070
path: tarballs
@@ -76,7 +76,7 @@ jobs:
7676
with:
7777
persist-credentials: false
7878
- name: Set up Python ${{ env.PYTHON_VERSION }}
79-
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
79+
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
8080
with:
8181
python-version: ${{ env.PYTHON_VERSION }}
8282
- name: Set up sccache
@@ -86,7 +86,7 @@ jobs:
8686
- name: Environment Information
8787
run: npx envinfo
8888
- name: Download tarball
89-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
89+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
9090
with:
9191
name: tarballs
9292
path: tarballs

.github/workflows/build-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
with:
4343
persist-credentials: false
4444
- name: Set up Python ${{ env.PYTHON_VERSION }}
45-
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
45+
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
4646
with:
4747
python-version: ${{ env.PYTHON_VERSION }}
4848
- name: Install deps

.github/workflows/commit-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
persist-credentials: false
2424
- run: git reset HEAD^2
2525
- name: Install Node.js
26-
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
26+
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
2727
with:
2828
node-version: ${{ env.NODE_VERSION }}
2929
- name: Validate commit message

.github/workflows/commit-queue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171

7272
# Install dependencies
7373
- name: Install Node.js
74-
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
74+
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
7575
with:
7676
node-version: ${{ env.NODE_VERSION }}
7777
- name: Install @node-core/utils

.github/workflows/coverage-linux-without-intl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
with:
5151
persist-credentials: false
5252
- name: Set up Python ${{ env.PYTHON_VERSION }}
53-
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
53+
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
5454
with:
5555
python-version: ${{ env.PYTHON_VERSION }}
5656
- name: Set up sccache

.github/workflows/coverage-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
with:
5151
persist-credentials: false
5252
- name: Set up Python ${{ env.PYTHON_VERSION }}
53-
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
53+
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
5454
with:
5555
python-version: ${{ env.PYTHON_VERSION }}
5656
- name: Set up sccache

.github/workflows/coverage-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
with:
4848
persist-credentials: false
4949
- name: Set up Python ${{ env.PYTHON_VERSION }}
50-
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
50+
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
5151
with:
5252
python-version: ${{ env.PYTHON_VERSION }}
5353
- name: Install deps

.github/workflows/daily-wpt-fyi.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- name: Set up Python ${{ env.PYTHON_VERSION }}
36-
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
36+
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
3737
with:
3838
python-version: ${{ env.PYTHON_VERSION }}
3939
- name: Environment Information
@@ -45,7 +45,7 @@ jobs:
4545
run: echo "NIGHTLY=$(curl -s https://nodejs.org/download/nightly/index.json | jq -r '[.[] | select(.files[] | contains("linux-x64"))][0].version')" >> $GITHUB_ENV
4646
- name: Install Node.js
4747
id: setup-node
48-
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
48+
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
4949
with:
5050
node-version: ${{ env.NIGHTLY || matrix.node-version }}
5151
check-latest: true
@@ -121,7 +121,7 @@ jobs:
121121
run: cp wptreport.json wptreport-${{ steps.setup-node.outputs.node-version }}.json
122122
- name: Upload GitHub Actions artifact
123123
if: ${{ env.WPT_REPORT != '' }}
124-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
124+
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
125125
with:
126126
path: out/wpt/wptreport-*.json
127127
name: WPT Report for ${{ steps.setup-node.outputs.node-version }}

0 commit comments

Comments
 (0)