Skip to content

Commit a021d9f

Browse files
committed
Merge remote-tracking branch 'origin/main' into mael/package-maps
2 parents 1473492 + c7d05fc commit a021d9f

File tree

1,984 files changed

+365167
-31093
lines changed

Some content is hidden

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

1,984 files changed

+365167
-31093
lines changed

.github/CODEOWNERS

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,15 @@
8383
/src/node_http2* @nodejs/http2 @nodejs/net
8484
/src/node_mem* @nodejs/http2
8585

86+
# quic
87+
88+
/deps/ngtcp2/* @nodejs/quic
89+
/doc/api/quic.md @nodejs/quic
90+
/lib/quic.js @nodejs/quic
91+
/lib/internal/quic/* @nodejs/quic
92+
/src/quic/* @nodejs/quic
93+
/test/parallel/test-quic-* @nodejs/quic
94+
8695
# modules, including loaders
8796

8897
/doc/api/esm.md @nodejs/loaders

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ jobs:
2828
- name: Get Pull Requests
2929
id: get_prs_for_ci
3030
run: >
31-
numbers=$(gh pr list \
32-
--repo ${{ github.repository }} \
31+
echo "numbers=$(gh pr list \
32+
--repo "$GITHUB_REPOSITORY" \
3333
--label 'request-ci' \
3434
--json 'number' \
35+
--search 'review:approved' \
3536
-t '{{ range . }}{{ .number }} {{ end }}' \
36-
--limit 5)
37-
echo "numbers=$numbers" >> $GITHUB_OUTPUT
37+
--limit 5)" >> "$GITHUB_OUTPUT"
3838
env:
3939
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4040
start-ci:
@@ -46,7 +46,7 @@ jobs:
4646
runs-on: ubuntu-slim
4747
steps:
4848
- name: Install Node.js
49-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
49+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
5050
with:
5151
node-version: ${{ env.NODE_VERSION }}
5252

.github/workflows/build-tarball.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
- name: Environment Information
128128
run: npx envinfo
129129
- name: Download tarball
130-
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
130+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
131131
with:
132132
name: tarballs
133133
path: tarballs

.github/workflows/codeql.yml

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

2828
# Initializes the CodeQL tools for scanning.
2929
- name: Initialize CodeQL
30-
uses: github/codeql-action/init@89a39a4e59826350b863aa6b6252a07ad50cf83e # v4.32.4
30+
uses: github/codeql-action/init@c10b8064de6f491fea524254123dbe5e09572f13 # v4.35.1
3131
with:
3232
languages: ${{ matrix.language }}
3333
config-file: ./.github/codeql-config.yml
3434

3535
- name: Autobuild
36-
uses: github/codeql-action/autobuild@89a39a4e59826350b863aa6b6252a07ad50cf83e # v4.32.4
36+
uses: github/codeql-action/autobuild@c10b8064de6f491fea524254123dbe5e09572f13 # v4.35.1
3737

3838
- name: Perform CodeQL Analysis
39-
uses: github/codeql-action/analyze@89a39a4e59826350b863aa6b6252a07ad50cf83e # v4.32.4
39+
uses: github/codeql-action/analyze@c10b8064de6f491fea524254123dbe5e09572f13 # v4.35.1
4040
with:
4141
category: /language:${{matrix.language}}

.github/workflows/commit-lint.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: First commit message adheres to guidelines
22

3-
on: [pull_request]
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
- v[0-9]+.x-staging
48

59
env:
610
NODE_VERSION: lts/*
@@ -23,7 +27,7 @@ jobs:
2327
persist-credentials: false
2428
- run: git reset HEAD^2
2529
- name: Install Node.js
26-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
30+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
2731
with:
2832
node-version: ${{ env.NODE_VERSION }}
2933
- name: Validate commit message

.github/workflows/commit-queue.yml

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

7070
# Install dependencies
7171
- name: Install Node.js
72-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
72+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
7373
with:
7474
node-version: ${{ env.NODE_VERSION }}
7575
- 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
@@ -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@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
90+
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0
9191
with:
9292
directory: ./coverage

.github/workflows/coverage-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
90+
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0
9191
with:
9292
directory: ./coverage

.github/workflows/coverage-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,6 @@ jobs:
100100
- name: Clean tmp
101101
run: npx rimraf ./coverage/tmp
102102
- name: Upload
103-
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
103+
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0
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
@@ -40,7 +40,7 @@ jobs:
4040

4141
# Install dependencies
4242
- name: Install Node.js
43-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
43+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
4444
with:
4545
node-version: ${{ env.NODE_VERSION }}
4646

0 commit comments

Comments
 (0)