Skip to content

Commit 01c985f

Browse files
committed
Fix to use the windows-2025-vs2026 runner image
1 parent fb4a7cf commit 01c985f

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222

2323
jobs:
2424
build:
25-
runs-on: windows-2022
25+
runs-on: windows-2025-vs2026
2626

2727
steps:
2828
- name: Checkout

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# - https://gh.io/supported-runners-and-hardware-resources
2929
# - https://gh.io/using-larger-runners (GitHub.com only)
3030
# Consider using larger runners or machines with greater resources for possible analysis time improvements.
31-
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || (matrix.language == 'csharp' && 'windows-latest') || 'ubuntu-latest' }}
31+
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || (matrix.language == 'csharp' && 'windows-2025-vs2026') || 'ubuntu-latest' }}
3232
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
3333
permissions:
3434
# required for all workflows

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
secrets: inherit
2121

2222
release:
23-
runs-on: windows-latest
23+
runs-on: windows-2025-vs2026
2424
needs: build
2525
steps:
2626
- name: Checkout

0 commit comments

Comments
 (0)