Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 3 additions & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ on:

jobs:
analyze:
runs-on: macos-latest
# Only javascript-typescript is analyzed here, which needs no macOS toolchain.
# ubuntu is faster/cheaper and sidesteps the macos-latest -> macos-26 migration.
runs-on: ubuntu-latest
permissions:
security-events: write

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ on:

jobs:
test:
runs-on: macos-latest
# Pinned to macos-15 to match the release build env (release.yml) and avoid
# the macos-latest -> macos-26 toolchain jump breaking PR builds mid-rollout.
runs-on: macos-15
steps:
- uses: actions/checkout@v4

Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,10 @@ jobs:
arch: arm64
- target: x86_64-apple-darwin
arch: x64
runs-on: macos-latest
# Pinned to macos-15: macos-latest migrated to macos-26 (Tahoe) in June 2026,
# whose SDK makes desktop builds adopt Tahoe's new window chrome (misplaced
# traffic lights + white frame). Pin keeps a reproducible, pre-26 SDK build.
runs-on: macos-15
permissions:
contents: write

Expand Down Expand Up @@ -241,7 +244,10 @@ jobs:

release-cli-windows:
needs: create-release
runs-on: windows-latest
# Pinned to windows-2025 so a future windows-latest OS-major migration can't
# silently change the build env (same control-your-upgrade-timing rationale
# as the macos-15 pin). Keeps the current, working Server 2025 + VS2026 image.
runs-on: windows-2025
permissions:
contents: write
steps:
Expand Down
2 changes: 1 addition & 1 deletion crates/hk-desktop/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"title": "HarnessKit",
"hiddenTitle": true,
"titleBarStyle": "Overlay",
"trafficLightPosition": { "x": 16, "y": 12 },
"trafficLightPosition": { "x": 16, "y": 18 },
"decorations": true,
"width": 1280,
"height": 800,
Expand Down
Loading