Skip to content

Commit 86d415a

Browse files
authored
Merge branch 'microsoft:main' into main
2 parents 6b7cebe + bb5943c commit 86d415a

File tree

297 files changed

+18266
-4370
lines changed

Some content is hidden

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

297 files changed

+18266
-4370
lines changed

.github/actions/.npmrc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
registry=https://pkgs.dev.azure.com/azure-public/VisualCpp/_packaging/cpp_PublicPackages/npm/registry/
2-
always-auth=true
2+
always-auth=true
3+
# Disable postinstall scripts for supply chain security. Allowlist exceptions with npm trust: https://docs.npmjs.com/cli/v11/commands/npm-trust
4+
ignore-scripts=true

.github/actions/AddComment/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ inputs:
3838
readonly:
3939
description: If true, changes are not applied.
4040
runs:
41-
using: 'node20'
41+
using: 'node24'
4242
main: 'index.js'

.github/actions/Locker/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ inputs:
2929
readonly:
3030
description: If true, changes are not applied.
3131
runs:
32-
using: 'node20'
32+
using: 'node24'
3333
main: 'index.js'

.github/actions/Reopener/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ inputs:
3333
readonly:
3434
description: If true, changes are not applied.
3535
runs:
36-
using: 'node20'
36+
using: 'node24'
3737
main: 'index.js'

.github/actions/StaleCloser/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ inputs:
4343
readonly:
4444
description: If true, changes are not applied.
4545
runs:
46-
using: 'node20'
46+
using: 'node24'
4747
main: 'index.js'

.github/actions/package-lock.json

Lines changed: 1481 additions & 1186 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/package.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
"keywords": [],
1111
"author": "",
1212
"dependencies": {
13-
"@actions/core": "^1.9.1",
14-
"@actions/github": "^6.0.0",
13+
"@actions/core": "^2.0.3",
14+
"@actions/github": "^8.0.1",
1515
"@octokit/rest": "^21.1.1",
1616
"@slack/web-api": "^6.9.1",
1717
"applicationinsights": "^2.5.1",
18-
"axios": "^1.8.2",
18+
"axios": "^1.13.5",
1919
"uuid": "^8.3.2"
2020
},
2121
"devDependencies": {
@@ -39,7 +39,9 @@
3939
"typescript": "^4.7.4",
4040
"yargs": "^17.5.1"
4141
},
42-
"resolutions": {
43-
"minimatch": "^3.0.5"
42+
"overrides": {
43+
"serialize-javascript": "^7.0.5",
44+
"flatted": "^3.4.2",
45+
"fast-xml-parser": "^5.5.7"
4446
}
4547
}

.github/workflows/bug-debugger.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,17 @@ on:
88
description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub"
99
default: false
1010

11+
env:
12+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
13+
1114
jobs:
1215
main:
1316
runs-on: ubuntu-latest
1417
permissions:
1518
issues: write
1619
steps:
1720
- name: Checkout Actions
18-
uses: actions/checkout@v2
21+
uses: actions/checkout@v5
1922
- name: Install Actions
2023
run: cd ./.github/actions && npm install --production && cd ../..
2124
- name: Add Comment
@@ -27,3 +30,4 @@ jobs:
2730
createdAfter: "2024-07-22"
2831
addComment: "Thank you for reporting this issue. We’ll let you know if we need more information to investigate it. Additionally, if you're working with GDB/LLDB, please note that the code is open source at https://github.com/microsoft/MIEngine/wiki/Contributing-Code . Your contributions are always welcome and appreciated."
2932
addLabels: help wanted
33+

.github/workflows/by-design-closer-debugger .yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,17 @@ on:
88
description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub"
99
default: false
1010

11+
env:
12+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
13+
1114
jobs:
1215
main:
1316
runs-on: ubuntu-latest
1417
permissions:
1518
issues: write
1619
steps:
1720
- name: Checkout Actions
18-
uses: actions/checkout@v3
21+
uses: actions/checkout@v5
1922
- name: Install Actions
2023
run: cd ./.github/actions && npm install --production && cd ../..
2124
- name: Stale Closer
@@ -26,3 +29,4 @@ jobs:
2629
ignoreLabels: Language Service,internal
2730
closeDays: 0
2831
closeComment: "This issue has been closed because the described behavior was determined to be by design."
32+

.github/workflows/by-design-closer.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,17 @@ on:
88
description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub"
99
default: false
1010

11+
env:
12+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
13+
1114
jobs:
1215
main:
1316
runs-on: ubuntu-latest
1417
permissions:
1518
issues: write
1619
steps:
1720
- name: Checkout Actions
18-
uses: actions/checkout@v3
21+
uses: actions/checkout@v5
1922
- name: Install Actions
2023
run: cd ./.github/actions && npm install --production && cd ../..
2124
- name: Stale Closer
@@ -28,3 +31,4 @@ jobs:
2831
closeComment: "This issue has been closed because the described behavior was determined to be by design."
2932
pingDays: 80
3033
pingComment: "Hey @${assignee}, this issue might need further attention.\n\n@${author}, you can help us out by closing this issue if it is no longer relevant."
34+

0 commit comments

Comments
 (0)