Skip to content

Commit 1b65777

Browse files
committed
Address review comments
1 parent a32db48 commit 1b65777

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
strategy:
7878
fail-fast: false
7979
matrix:
80-
os: [ubuntu-22.04,ubuntu-24.04,windows-2022,windows-2025,macos-latest-xlarge]
80+
os: [ubuntu-22.04,ubuntu-24.04,windows-2022,windows-2025,macos-14-xlarge,macos-15-xlarge]
8181
tools: ${{ fromJson(needs.check-codeql-versions.outputs.versions) }}
8282
runs-on: ${{ matrix.os }}
8383

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"test": "npm run ava -- src/",
1414
"test-debug": "npm run test -- --timeout=20m",
1515
"transpile": "tsc --build --verbose tsconfig.json",
16-
"update-pr-checks": "pr-checks/sync.sh"
16+
"update-pr-checks": "./pr-checks/sync.sh"
1717
},
1818
"license": "MIT",
1919
"workspaces": [

pr-checks/sync.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ interface Specification extends JobSpecification {
4343
inputs?: Record<string, WorkflowInput>;
4444
/** CodeQL bundle versions to test against. Defaults to `DEFAULT_TEST_VERSIONS`. */
4545
versions?: string[];
46-
/** Operating system prefixes used to select runner images (e.g. `["ubuntu", "macos"]`). */
46+
/** Operating system prefixes, either as strings or with explicit runner image labels. */
4747
operatingSystems?: OperatingSystem[];
4848
/** Per-OS version overrides. If specified for an OS, only those versions are tested on that OS. */
4949
osCodeQlVersions?: Record<string, string[]>;

0 commit comments

Comments
 (0)