Skip to content

Commit d1396a6

Browse files
committed
use windows-2025
1 parent a6f0c90 commit d1396a6

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/_artifacts_windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ env:
88
jobs:
99
artifacts:
1010
name: ${{ matrix.package }}
11-
runs-on: windows-latest
11+
runs-on: windows-2025
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-latest, ubuntu-24.04, macos-15]
14+
os: [windows-2025, ubuntu-24.04, macos-15]
1515

1616
runs-on: ${{ matrix.os }}
1717
steps:
@@ -30,21 +30,21 @@ jobs:
3030
-
3131
name: 'Upload nuget packages'
3232
uses: actions/upload-artifact@v4
33-
if: matrix.os == 'windows-latest'
33+
if: matrix.os == 'windows-2025'
3434
with:
3535
name: nuget
3636
path: ${{ github.workspace }}/artifacts/packages/nuget
3737
-
3838
name: 'Upload native packages'
3939
uses: actions/upload-artifact@v4
40-
if: matrix.os == 'windows-latest'
40+
if: matrix.os == 'windows-2025'
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@v4
47-
if: matrix.os != 'windows-latest'
47+
if: matrix.os != 'windows-2025'
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
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
os: [windows-latest, ubuntu-24.04, macos-15]
16+
os: [windows-2025, ubuntu-24.04, macos-15]
1717

1818
runs-on: ${{ matrix.os }}
1919
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-latest
11+
runs-on: windows-2025
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-latest, ubuntu-24.04, macos-15]
19+
os: [windows-2025, ubuntu-24.04, macos-15]
2020
dotnetVersion: ${{ fromJson(inputs.dotnetVersions) }}
2121

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

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118
release:
119119
name: Release
120120
needs: [ publish, docker_linux_manifests ]
121-
runs-on: windows-latest
121+
runs-on: windows-2025
122122
env:
123123
GITHUB_TOKEN: ${{ secrets.RELEASE_GITHUB_TOKEN }}
124124
steps:

0 commit comments

Comments
 (0)