Skip to content

Commit d52c377

Browse files
committed
ci(workflows): Update Windows runner image to windows-2025-vs2026
1 parent cc8dd94 commit d52c377

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/_artifacts_windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ on:
44
env:
55
DOTNET_INSTALL_DIR: "./.dotnet"
66
DOTNET_ROLL_FORWARD: "Major"
7-
7+
88
jobs:
99
artifacts:
1010
name: ${{ matrix.package }}
11-
runs-on: windows-2025
11+
runs-on: windows-2025-vs2026
1212
strategy:
1313
fail-fast: false
1414
matrix:

.github/workflows/_build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
os: [windows-2025, ubuntu-24.04, macos-26]
14+
os: [windows-2025-vs2026, ubuntu-24.04, macos-26]
1515

1616
runs-on: ${{ matrix.os }}
1717
steps:
@@ -30,21 +30,21 @@ jobs:
3030
-
3131
name: 'Upload nuget packages'
3232
uses: actions/upload-artifact@v7
33-
if: matrix.os == 'windows-2025'
33+
if: matrix.os == 'windows-2025-vs2026'
3434
with:
3535
name: nuget
3636
path: ${{ github.workspace }}/artifacts/packages/nuget
3737
-
3838
name: 'Upload native packages'
3939
uses: actions/upload-artifact@v7
40-
if: matrix.os == 'windows-2025'
40+
if: matrix.os == 'windows-2025-vs2026'
4141
with:
4242
name: native-${{ runner.os }}
4343
path: ${{ github.workspace }}/artifacts/packages/native/*.zip
4444
-
4545
name: 'Upload native packages'
4646
uses: actions/upload-artifact@v7
47-
if: matrix.os != 'windows-2025'
47+
if: matrix.os != 'windows-2025-vs2026'
4848
with:
4949
name: native-${{ runner.os }}
5050
path: ${{ github.workspace }}/artifacts/packages/native/*.tar.gz

.github/workflows/_prepare.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
os: [windows-2025, ubuntu-24.04, macos-26]
21+
os: [windows-2025-vs2026, ubuntu-24.04, macos-26]
2222

2323
runs-on: ${{ matrix.os }}
2424
steps:

.github/workflows/_publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ env:
88
jobs:
99
publish:
1010
name: ${{ matrix.taskName }}
11-
runs-on: windows-2025
11+
runs-on: windows-2025-vs2026
1212
strategy:
1313
fail-fast: false
1414
matrix:

.github/workflows/_unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
os: [ windows-2025, ubuntu-24.04, macos-26 ]
19+
os: [ windows-2025-vs2026, ubuntu-24.04, macos-26 ]
2020
dotnet_version: ${{ fromJson(inputs.dotnet_versions) }}
2121

2222
runs-on: ${{ matrix.os }}

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
release:
122122
name: Release
123123
needs: [ publish, docker_linux_manifests ]
124-
runs-on: windows-2025
124+
runs-on: windows-2025-vs2026
125125
permissions:
126126
contents: write
127127
packages: write

0 commit comments

Comments
 (0)