Skip to content

Commit 212efe7

Browse files
committed
ci: pin Windows runner to windows-2025-vs2026
CI was emitting `windows-latest requests are being redirected to windows-2025-vs2026 by June 15, 2026` NOTICE on every Windows job. Pin explicitly to the destination image instead of relying on the alias so the runner image can't shift under us silently.
1 parent fc0f486 commit 212efe7

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,10 @@ jobs:
238238
239239
bridge_example_windows:
240240
name: Test Bridge example on Windows (Python ${{ matrix.python_version }})
241-
runs-on: windows-latest
241+
# Explicit pin instead of `windows-latest` to avoid silent image moves.
242+
# `windows-2025-vs2026` is what GitHub redirects `windows-latest` to
243+
# starting 2026-06-15 (Server 2025 + VS 2026).
244+
runs-on: windows-2025-vs2026
242245
strategy:
243246
fail-fast: false
244247
matrix:

0 commit comments

Comments
 (0)