Skip to content

Commit c10020e

Browse files
committed
Merge remote-tracking branch 'origin/main' into kaspersv/move-diff-range-absolute-path-conversion
* origin/main: (32 commits) Add changelog note Update default bundle to codeql-bundle-v2.24.3 Bump tar from 7.5.7 to 7.5.10 Rebuild Rebuild Bump actions/upload-artifact from 6 to 7 in /.github/workflows Bump actions/download-artifact from 7 to 8 in /.github/workflows Bump the npm-minor group with 2 updates Fix some tests that should be serial Update method naming and JSDoc Rename to `EnabledOverlayConfig` Address review comments Use `Result`s for enablement return types Add disabled by env var disablement reason Rename to `usesDefaultQueriesOnly` Update `NonDefaultQueries` documentation Refactor `getOverlayDatabaseMode` and add new disablement reason Address review comments Add JSDoc Sort `OverlayDisabledReason` enum ...
2 parents b2de493 + 72d2d85 commit c10020e

Some content is hidden

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

43 files changed

+1089
-1039
lines changed

.github/workflows/__analysis-kinds.yml

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

.github/workflows/__bundle-zstd.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__config-export.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__diagnostics-export.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__export-file-baseline-information.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__job-run-uuid-sarif.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/debug-artifacts-failure-safe.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
runs-on: ubuntu-latest
9090
steps:
9191
- name: Download all artifacts
92-
uses: actions/download-artifact@v7
92+
uses: actions/download-artifact@v8
9393
- name: Check expected artifacts exist
9494
run: |
9595
LANGUAGES="cpp csharp go java javascript python"

.github/workflows/debug-artifacts-safe.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
runs-on: ubuntu-latest
8484
steps:
8585
- name: Download all artifacts
86-
uses: actions/download-artifact@v7
86+
uses: actions/download-artifact@v8
8787
- name: Check expected artifacts exist
8888
run: |
8989
VERSIONS="stable-v2.20.3 default linked nightly-latest"

.github/workflows/pr-checks.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,6 @@ jobs:
4242
node-version: ${{ matrix.node-version }}
4343
cache: 'npm'
4444

45-
- name: Set up Python
46-
uses: actions/setup-python@v6
47-
with:
48-
python-version: 3.11
49-
5045
- name: Install dependencies
5146
run: |
5247
# Use the system Bash shell to ensure we can run commands like `npm ci`
@@ -68,7 +63,7 @@ jobs:
6863
- name: Run pr-checks tests
6964
if: always()
7065
working-directory: pr-checks
71-
run: python -m unittest discover
66+
run: npm ci && npx tsx --test
7267

7368
- name: Lint
7469
if: always() && matrix.os != 'windows-latest'

.github/workflows/rebuild.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,17 +73,13 @@ jobs:
7373
npm run lint -- --fix
7474
npm run build
7575
76-
- name: Set up Python
77-
uses: actions/setup-python@v6
78-
with:
79-
python-version: 3.11
80-
8176
- name: Sync back version updates to generated workflows
8277
# Only sync back versions on Dependabot update PRs
8378
if: startsWith(env.HEAD_REF, 'dependabot/')
8479
working-directory: pr-checks
8580
run: |
86-
python3 sync_back.py -v
81+
npm ci
82+
npx tsx sync_back.ts --verbose
8783
8884
- name: Generate workflows
8985
working-directory: pr-checks

0 commit comments

Comments
 (0)