Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
2549c08
Remove dependencies built into Node
henrymercer Aug 29, 2025
c2b5601
Update `get-folder-size`
henrymercer Aug 29, 2025
943116b
Use `url.pathToFileURL` instead of `file-url`
henrymercer Aug 29, 2025
0983948
Update `del`
henrymercer Aug 29, 2025
31c155d
Update changelog and version after v3.30.0
github-actions[bot] Sep 1, 2025
8eac8cc
Rebuild
github-actions[bot] Sep 1, 2025
9fde809
Merge pull request #3066 from github/henrymercer/update-dependencies
henrymercer Sep 1, 2025
f9a0f98
Merge pull request #3068 from github/mergeback/v3.30.0-to-main-2d92b76c
henrymercer Sep 1, 2025
fea2cbc
Bump ruby/setup-ruby from 1.256.0 to 1.257.0 in the actions group
dependabot[bot] Sep 1, 2025
4c7e4da
Bump @types/get-folder-size from 2.0.0 to 3.0.4 in the npm group
dependabot[bot] Sep 1, 2025
bade475
Merge remote-tracking branch 'origin/main' into dependabot/npm_and_ya…
github-actions[bot] Sep 1, 2025
51a96b9
Rebuild
github-actions[bot] Sep 1, 2025
d4285a6
Bump ruby/setup-ruby from 1.256.0 to 1.257.0 in the actions group
esbena Sep 2, 2025
a0c4701
Merge pull request #3069 from github/dependabot/github_actions/action…
esbena Sep 2, 2025
92b7de3
Merge pull request #3070 from github/dependabot/npm_and_yarn/npm-8a14…
mbg Sep 2, 2025
935698f
Fix missing/wrong properties in `createTestConfig`
mbg Sep 2, 2025
fdb7cfe
Update src/testing-utils.ts
mbg Sep 2, 2025
68d7fe3
Merge pull request #3071 from github/mbg/fix/createTestConfig
mbg Sep 2, 2025
15403aa
Mark `quality-queries` input as deprecated
mbg Aug 28, 2025
7f8f88e
Use hard-coded list of quality queries, rather than `quality-queries`…
mbg Aug 28, 2025
e116d99
Stop propagating `quality-queries` input
mbg Aug 28, 2025
9f5a64c
Merge pull request #3074 from github/mbg/cq/hardcode-quality-queries
mbg Sep 2, 2025
c4d2772
Add `computedConfig` property to `Config` type
mbg Sep 2, 2025
ac9b91e
Move overlay db settings from `AugmentationProperties` to `Config`
mbg Sep 2, 2025
eccc755
Fix update-bundle workflow
aibaars Sep 2, 2025
d5dbc12
Add actions/setup-node step
aibaars Sep 2, 2025
56649d3
Initial plan
Copilot Sep 2, 2025
e6103f5
Remove redundant @types packages that ship their own types
Copilot Sep 2, 2025
16df4fb
Merge pull request #3073 from github/aibaars/update-bundle
aibaars Sep 2, 2025
d8532d6
Update default bundle to codeql-bundle-v2.23.0
github-actions[bot] Sep 2, 2025
fd7a1e1
Add changelog note
github-actions[bot] Sep 2, 2025
47454d9
Merge pull request #3076 from github/copilot/fix-e885529e-2505-445e-8…
henrymercer Sep 2, 2025
7076b2b
Add retroactive changelog note for #3054
henrymercer Sep 2, 2025
0df9353
Merge pull request #3078 from github/henrymercer-patch-1
henrymercer Sep 2, 2025
e9fb72d
Move `extraQueryExclusions` out of `AugmentationProperties`
mbg Sep 3, 2025
7f81363
Mark result of `appendExtraQueryExclusions` as `Readonly` to prevent …
mbg Sep 3, 2025
d332aa9
Use `computedConfig` for pack telemetry
mbg Sep 2, 2025
87c5b58
Remove `augmentationProperties` from `Config`
mbg Sep 2, 2025
1fd8a71
Merge pull request #3072 from github/mbg/refactor/augmentation-proper…
mbg Sep 3, 2025
0fb047d
Set user-provided `UserConfig` in `getDefaultConfig`
mbg Sep 4, 2025
8d623f4
Populate `computedConfig` in `getDefaultConfig`
mbg Sep 4, 2025
f2e20f5
Rename `getDefaultConfig` and update doc comment
mbg Sep 4, 2025
da92996
Move `InitStatusReport` types to `status-report.ts`
mbg Sep 4, 2025
37ddb03
Add `createInitWithConfigStatusReport` function
mbg Sep 4, 2025
920bba1
Add unit tests for `createInitWithConfigStatusReport`
mbg Sep 4, 2025
dfb741d
Merge pull request #3075 from github/mbg/remove-augmentation-properties
mbg Sep 4, 2025
6242bcb
Allow multiple registry types in `LANGUAGE_TO_REGISTRY_TYPE`
mbg Sep 4, 2025
8fe8b24
Add `git_source` as supported registry type for Go
mbg Sep 4, 2025
5b8860a
Merge branch 'main' into update-bundle/codeql-bundle-v2.23.0
aibaars Sep 4, 2025
b364f99
Merge pull request #3077 from github/update-bundle/codeql-bundle-v2.23.0
aibaars Sep 4, 2025
2d2f57e
Merge pull request #3079 from github/mbg/proxy/accept-git-source
mbg Sep 4, 2025
5dd2164
Update changelog for v3.30.1
github-actions[bot] Sep 5, 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
Prev Previous commit
Next Next commit
Add actions/setup-node step
  • Loading branch information
aibaars committed Sep 2, 2025
commit d5dbc128c57b115f084c1351f8d1e3da3584fa2a
6 changes: 6 additions & 0 deletions .github/workflows/update-bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ jobs:
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'npm'

- name: Install dependencies
run: npm ci

Expand Down
Loading