Skip to content

Commit 0dfdc54

Browse files
authored
Merge branch 'main' into fix/ambiguous-error-message
2 parents 8078665 + fc32ac2 commit 0dfdc54

File tree

1,809 files changed

+131754
-51998
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,809 files changed

+131754
-51998
lines changed

.devcontainer.json

Lines changed: 0 additions & 25 deletions
This file was deleted.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "Node.js Dev Container",
3+
"image": "nodejs/devcontainer:nightly",
4+
"workspaceMount": "source=${localWorkspaceFolder},target=/home/developer/nodejs/node,type=bind,consistency=cached",
5+
"workspaceFolder": "/home/developer/nodejs/node",
6+
"remoteUser": "developer",
7+
"mounts": [
8+
"source=node-devcontainer-cache,target=/home/developer/nodejs/node/out,type=volume"
9+
],
10+
"postCreateCommand": "git restore-mtime"
11+
}

.github/CODEOWNERS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,3 +231,7 @@
231231

232232
# userland-migrations
233233
/doc/api/deprecations.md @nodejs/userland-migrations
234+
235+
# dev container
236+
/.devcontainer/* @nodejs/devcontainer
237+
/doc/contributing/using-devcontainer.md @nodejs/devcontainer

.github/dependabot.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,9 @@ updates:
1010
semver-major-days: 5
1111
semver-minor-days: 5
1212
semver-patch-days: 5
13-
1413
commit-message:
1514
prefix: meta
16-
open-pull-requests-limit: ${{secrets.OPEN_PR_LIMIT}}
15+
open-pull-requests-limit: 10
1716

1817
- package-ecosystem: npm
1918
directory: /tools/eslint
@@ -25,7 +24,7 @@ updates:
2524
semver-patch-days: 5
2625
commit-message:
2726
prefix: tools
28-
open-pull-requests-limit: ${{secrets.OPEN_PR_LIMIT}}
27+
open-pull-requests-limit: 10
2928
groups:
3029
eslint:
3130
applies-to: version-updates
@@ -42,7 +41,7 @@ updates:
4241
semver-patch-days: 5
4342
commit-message:
4443
prefix: tools
45-
open-pull-requests-limit: ${{secrets.OPEN_PR_LIMIT}}
44+
open-pull-requests-limit: 10
4645
groups:
4746
lint-md:
4847
applies-to: version-updates
@@ -59,7 +58,7 @@ updates:
5958
semver-patch-days: 5
6059
commit-message:
6160
prefix: tools
62-
open-pull-requests-limit: ${{secrets.OPEN_PR_LIMIT}}
61+
open-pull-requests-limit: 10
6362
groups:
6463
doc:
6564
applies-to: version-updates

.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@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
53+
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
5454
with:
5555
node-version: ${{ env.NODE_VERSION }}
5656

.github/workflows/build-tarball.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
- '**.md'
99
- AUTHORS
1010
- doc/**
11+
- test/internet/**
1112
- .github/**
1213
- '!.github/workflows/build-tarball.yml'
1314
push:
@@ -20,6 +21,7 @@ on:
2021
- '**.md'
2122
- AUTHORS
2223
- doc/**
24+
- test/internet/**
2325
- .github/**
2426
- '!.github/workflows/build-tarball.yml'
2527

@@ -57,7 +59,7 @@ jobs:
5759
export COMMIT=$(git rev-parse --short=10 "$GITHUB_SHA")
5860
./configure && make tar -j4 SKIP_XZ=1
5961
- name: Upload tarball artifact
60-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
62+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
6163
with:
6264
name: tarballs
6365
path: '*.tar.gz'
@@ -91,7 +93,7 @@ jobs:
9193
- name: Environment Information
9294
run: npx envinfo
9395
- name: Download tarball
94-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
96+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
9597
with:
9698
name: tarballs
9799
path: tarballs

.github/workflows/close-stale-feature-requests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
if: github.repository == 'nodejs/node'
4242
runs-on: ubuntu-latest
4343
steps:
44-
- uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f # v10.0.0
44+
- uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 # v10.1.0
4545
with:
4646
repo-token: ${{ secrets.GITHUB_TOKEN }}
4747
days-before-stale: 180

.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-latest
2222
steps:
23-
- uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f # v10.0.0
23+
- uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 # v10.1.0
2424
with:
2525
repo-token: ${{ secrets.GITHUB_TOKEN }}
2626
days-before-close: 30

.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@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.30.5
30+
uses: github/codeql-action/init@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2
3131
with:
3232
languages: ${{ matrix.language }}
3333
config-file: ./.github/codeql-config.yml
3434

3535
- name: Autobuild
36-
uses: github/codeql-action/autobuild@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.30.5
36+
uses: github/codeql-action/autobuild@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2
3737

3838
- name: Perform CodeQL Analysis
39-
uses: github/codeql-action/analyze@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.30.5
39+
uses: github/codeql-action/analyze@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2
4040
with:
4141
category: /language:${{matrix.language}}

.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@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
26+
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
2727
with:
2828
node-version: ${{ env.NODE_VERSION }}
2929
- name: Validate commit message

0 commit comments

Comments
 (0)