Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
b5aca35
Include .js/.ts in module specifiers in the VS Code workspace
RyanCavanaugh Nov 15, 2024
a85f319
Update dependabot.yml
Git-Hub-Chris Sep 5, 2025
e476af6
Bump actions/setup-python from 5 to 6
dependabot[bot] Sep 5, 2025
1a24e15
Bump actions/setup-node from 4 to 5
dependabot[bot] Sep 5, 2025
1dcade6
Merge branch 'Main' into dependabot/github_actions/actions/setup-node-5
Git-Hub-Chris Sep 6, 2025
4c7fd24
Merge branch 'Main' into dependabot/github_actions/actions/setup-pyth…
Git-Hub-Chris Sep 6, 2025
4389808
Merge branch 'aamunger/diffNavigation2' into Main
Git-Hub-Chris Sep 8, 2025
0f31371
Bump the npm_and_yarn group across 14 directories with 12 updates
dependabot[bot] Sep 8, 2025
22f9b93
Delete .github/workflows/no-yarn-lock-changes.yml
Git-Hub-Chris Sep 14, 2025
65dcc05
Merge branch 'Main' into dependabot/npm_and_yarn/npm_and_yarn-177ef141e8
Git-Hub-Chris Sep 14, 2025
ca4eebb
Merge branch 'Main' into dependabot/github_actions/actions/setup-pyth…
Git-Hub-Chris Sep 14, 2025
5328be0
Merge branch 'Main' into dependabot/github_actions/actions/setup-node-5
Git-Hub-Chris Sep 14, 2025
c8ff5e1
Potential fix for code scanning alert no. 74: Incomplete URL substrin…
Git-Hub-Chris Sep 14, 2025
ab044d1
Potential fix for code scanning alert no. 73: Incomplete URL substrin…
Git-Hub-Chris Sep 14, 2025
9974023
Delete .github/workflows/no-package-lock-changes.yml
Git-Hub-Chris Sep 14, 2025
e4d0794
Merge branch 'Main' into alert-autofix-73
Git-Hub-Chris Sep 14, 2025
abd5781
Merge branch 'Main' into alert-autofix-74
Git-Hub-Chris Sep 14, 2025
5dd662d
Merge branch 'Main' into dependabot/npm_and_yarn/npm_and_yarn-177ef141e8
Git-Hub-Chris Sep 14, 2025
a1fe609
Merge branch 'Main' into dependabot/github_actions/actions/setup-node-5
Git-Hub-Chris Sep 15, 2025
3e044cb
Merge pull request #9 from Git-Hub-Chris/alert-autofix-73
Git-Hub-Chris Sep 15, 2025
71dad18
Merge branch 'Main' into alert-autofix-74
Git-Hub-Chris Sep 15, 2025
45bebc8
Merge branch 'Main' into dependabot/npm_and_yarn/npm_and_yarn-177ef141e8
Git-Hub-Chris Sep 15, 2025
66c9831
Merge pull request #3 from Git-Hub-Chris/dependabot/github_actions/ac…
Git-Hub-Chris Sep 15, 2025
0f2b46f
Merge branch 'Main' into dependabot/github_actions/actions/setup-pyth…
Git-Hub-Chris Sep 15, 2025
05e4c23
Merge branch 'Main' into dependabot/npm_and_yarn/npm_and_yarn-177ef141e8
Git-Hub-Chris Sep 15, 2025
4777f8f
Merge branch 'Main' into alert-autofix-74
Git-Hub-Chris Sep 15, 2025
47c2b0d
Merge pull request #8 from Git-Hub-Chris/alert-autofix-74
Git-Hub-Chris Sep 15, 2025
e986481
Merge branch 'Main' into dependabot/npm_and_yarn/npm_and_yarn-177ef141e8
Git-Hub-Chris Sep 15, 2025
310a532
Merge branch 'Main' into dependabot/github_actions/actions/setup-pyth…
Git-Hub-Chris Sep 15, 2025
2ec31dd
Potential fix for code scanning alert no. 70: Clear text storage of s…
Git-Hub-Chris Sep 15, 2025
9aeb75b
Merge pull request #2 from Git-Hub-Chris/dependabot/github_actions/ac…
Git-Hub-Chris Sep 15, 2025
e07c879
Merge pull request #6 from Git-Hub-Chris/dependabot/npm_and_yarn/npm_…
Git-Hub-Chris Sep 15, 2025
65c329d
Merge pull request #11 from Git-Hub-Chris/alert-autofix-70
Git-Hub-Chris Sep 15, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ updates:
directory: "/"
schedule:
interval: "weekly"

6 changes: 3 additions & 3 deletions .github/workflows/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
sudo update-rc.d xvfb defaults
sudo service xvfb start

- uses: actions/setup-node@v4
- uses: actions/setup-node@v5
with:
node-version-file: .nvmrc

Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
- uses: actions/setup-node@v5
with:
node-version-file: .nvmrc

Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
- uses: actions/setup-node@v5
with:
node-version-file: .nvmrc

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
- uses: actions/setup-node@v5
with:
node-version-file: .nvmrc

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.x"

Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
sudo update-rc.d xvfb defaults
sudo service xvfb start

- uses: actions/setup-node@v4
- uses: actions/setup-node@v5
with:
node-version-file: .nvmrc

Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
- uses: actions/setup-node@v5
with:
node-version-file: .nvmrc

Expand Down Expand Up @@ -259,7 +259,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
- uses: actions/setup-node@v5
with:
node-version-file: .nvmrc

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/monaco-editor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
- uses: actions/setup-node@v5
with:
node-version-file: .nvmrc

Expand Down
31 changes: 0 additions & 31 deletions .github/workflows/no-package-lock-changes.yml

This file was deleted.

31 changes: 0 additions & 31 deletions .github/workflows/no-yarn-lock-changes.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/telemetry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
steps:
- uses: 'actions/checkout@v4'

- uses: 'actions/setup-node@v4'
- uses: 'actions/setup-node@v5'
with:
node-version: 'lts/*'

Expand Down
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
"npm.exclude": "**/extensions/**",
"emmet.excludeLanguages": [],
"typescript.preferences.importModuleSpecifier": "relative",
"typescript.preferences.importModuleSpecifierEnding": "js",
"typescript.preferences.quoteStyle": "single",
"json.schemas": [
{
Expand Down
28 changes: 16 additions & 12 deletions build/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions extensions/css-language-features/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading