Skip to content

Commit 04c9e28

Browse files
authored
Merge branch 'nodejs:main' into quic-h3-status-number
2 parents 25644d0 + be7ea27 commit 04c9e28

609 files changed

Lines changed: 16489 additions & 1995 deletions

File tree

Some content is hidden

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

.github/label-pr-config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ subSystemLabels:
104104
/^lib\/internal\/url\.js$/: whatwg-url
105105
/^lib\/internal\/modules\/esm/: esm
106106
/^lib\/internal\/modules/: module
107+
/^lib\/internal\/source_map/: source maps
107108
/^lib\/internal\/webstreams/: web streams
108109
/^lib\/internal\/test_runner/: test_runner
109110
/^lib\/internal\/v8\//: v8 module
@@ -128,6 +129,8 @@ exlusiveLabels:
128129
/^test\/report\//: test, report
129130
/^test\/fixtures\/es-module/: test, esm
130131
/^test\/es-module\//: test, esm
132+
/^test\/fixtures\/source-map/: test, source maps
133+
/^test\/fixtures\/test-426/: test, source maps
131134
/^test\/fixtures\/wpt\/streams\//: test, web streams
132135
/^test\/fixtures\/typescript/: test, strip-types
133136
/^test\/module-hooks\//: test, module, loaders
@@ -214,6 +217,7 @@ allJsSubSystems:
214217
- url
215218
- util
216219
- v8
220+
- vfs
217221
- vm
218222
- wasi
219223
- worker

.github/workflows/build-tarball.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
if: github.event.pull_request.draft == false
7575
runs-on: ubuntu-slim
7676
steps:
77-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
77+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
7878
with:
7979
persist-credentials: false
8080
- name: Set up Python ${{ env.PYTHON_VERSION }}
@@ -105,7 +105,7 @@ jobs:
105105
SCCACHE_GHA_ENABLED: ${{ github.base_ref == 'main' || github.ref_name == 'main' }}
106106
SCCACHE_IDLE_TIMEOUT: '0'
107107
steps:
108-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
108+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
109109
with:
110110
persist-credentials: false
111111
sparse-checkout: .github/actions/install-clang

.github/workflows/close-stalled.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
if: github.repository == 'nodejs/node'
2121
runs-on: ubuntu-slim
2222
steps:
23-
- uses: actions/stale@b5d41d4e1d5dceea10e7104786b73624c18a190f # v10.2.0
23+
- uses: actions/stale@eb5cf3af3ac0a1aa4c9c45633dd1ae542a27a899 # v10.3.0
2424
with:
2525
repo-token: ${{ secrets.GITHUB_TOKEN }}
2626
days-before-close: 30

.github/workflows/codeql.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ permissions:
99

1010
jobs:
1111
analyze:
12+
if: github.repository == 'nodejs/node'
1213
name: Analyze
1314
runs-on: ubuntu-slim
1415
permissions:
@@ -23,19 +24,19 @@ jobs:
2324

2425
steps:
2526
- name: Checkout repository
26-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
27+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
2728

2829
# Initializes the CodeQL tools for scanning.
2930
- name: Initialize CodeQL
30-
uses: github/codeql-action/init@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3
31+
uses: github/codeql-action/init@87557b9c84dde89fdd9b10e88954ac2f4248e463 # v4.36.1
3132
with:
3233
languages: ${{ matrix.language }}
3334
config-file: ./.github/codeql-config.yml
3435

3536
- name: Autobuild
36-
uses: github/codeql-action/autobuild@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3
37+
uses: github/codeql-action/autobuild@87557b9c84dde89fdd9b10e88954ac2f4248e463 # v4.36.1
3738

3839
- name: Perform CodeQL Analysis
39-
uses: github/codeql-action/analyze@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3
40+
uses: github/codeql-action/analyze@87557b9c84dde89fdd9b10e88954ac2f4248e463 # v4.36.1
4041
with:
4142
category: /language:${{matrix.language}}

.github/workflows/commit-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
run: |
2121
echo "plusOne=$((${{ github.event.pull_request.commits }} + 1))" >> $GITHUB_OUTPUT
2222
echo "minusOne=$((${{ github.event.pull_request.commits }} - 1))" >> $GITHUB_OUTPUT
23-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
23+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
2424
with:
2525
fetch-depth: ${{ steps.nb-of-commits.outputs.plusOne }}
2626
persist-credentials: false

.github/workflows/commit-queue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
if: needs.get_mergeable_prs.outputs.numbers != ''
6060
runs-on: ubuntu-slim
6161
steps:
62-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
62+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
6363
with:
6464
# A personal token is required because pushing with GITHUB_TOKEN will
6565
# prevent commits from running CI after they land. It needs

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
if: github.event.pull_request.draft == false
5151
runs-on: ubuntu-24.04
5252
steps:
53-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
53+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
5454
with:
5555
persist-credentials: false
5656
- name: Install Clang ${{ env.CLANG_VERSION }}
@@ -87,6 +87,6 @@ jobs:
8787
- name: Clean tmp
8888
run: rm -rf coverage/tmp && rm -rf out
8989
- name: Upload
90-
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0
90+
uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6.0.1
9191
with:
9292
directory: ./coverage

.github/workflows/coverage-linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
if: github.event.pull_request.draft == false
5151
runs-on: ubuntu-24.04-arm
5252
steps:
53-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
53+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
5454
with:
5555
persist-credentials: false
5656
- name: Install Clang ${{ env.CLANG_VERSION }}
@@ -87,6 +87,6 @@ jobs:
8787
- name: Clean tmp
8888
run: rm -rf coverage/tmp && rm -rf out
8989
- name: Upload
90-
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0
90+
uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6.0.1
9191
with:
9292
directory: ./coverage

.github/workflows/coverage-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
if: github.event.pull_request.draft == false
7070
runs-on: windows-2025
7171
steps:
72-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
72+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
7373
with:
7474
persist-credentials: false
7575
- name: Set up Python ${{ env.PYTHON_VERSION }}
@@ -100,6 +100,6 @@ jobs:
100100
- name: Clean tmp
101101
run: npx rimraf ./coverage/tmp
102102
- name: Upload
103-
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0
103+
uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6.0.1
104104
with:
105105
directory: ./coverage

.github/workflows/create-release-proposal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
RELEASE_LINE: ${{ inputs.release-line }}
3434
runs-on: ubuntu-slim
3535
steps:
36-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
36+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
3737
with:
3838
ref: ${{ env.STAGING_BRANCH }}
3939
persist-credentials: false

0 commit comments

Comments
 (0)