Skip to content

Commit

Permalink
use windows-2025
Browse files Browse the repository at this point in the history
  • Loading branch information
arturcic committed Jan 8, 2025
1 parent a6f0c90 commit d1396a6
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/_artifacts_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:
jobs:
artifacts:
name: ${{ matrix.package }}
runs-on: windows-latest
runs-on: windows-2025
strategy:
fail-fast: false
matrix:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-24.04, macos-15]
os: [windows-2025, ubuntu-24.04, macos-15]

runs-on: ${{ matrix.os }}
steps:
Expand All @@ -30,21 +30,21 @@ jobs:
-
name: 'Upload nuget packages'
uses: actions/upload-artifact@v4
if: matrix.os == 'windows-latest'
if: matrix.os == 'windows-2025'
with:
name: nuget
path: ${{ github.workspace }}/artifacts/packages/nuget
-
name: 'Upload native packages'
uses: actions/upload-artifact@v4
if: matrix.os == 'windows-latest'
if: matrix.os == 'windows-2025'
with:
name: native-${{ runner.os }}
path: ${{ github.workspace }}/artifacts/packages/native/*.zip
-
name: 'Upload native packages'
uses: actions/upload-artifact@v4
if: matrix.os != 'windows-latest'
if: matrix.os != 'windows-2025'
with:
name: native-${{ runner.os }}
path: ${{ github.workspace }}/artifacts/packages/native/*.tar.gz
2 changes: 1 addition & 1 deletion .github/workflows/_prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-24.04, macos-15]
os: [windows-2025, ubuntu-24.04, macos-15]

runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:
jobs:
publish:
name: ${{ matrix.taskName }}
runs-on: windows-latest
runs-on: windows-2025
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-24.04, macos-15]
os: [windows-2025, ubuntu-24.04, macos-15]
dotnetVersion: ${{ fromJson(inputs.dotnetVersions) }}

runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
release:
name: Release
needs: [ publish, docker_linux_manifests ]
runs-on: windows-latest
runs-on: windows-2025
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_GITHUB_TOKEN }}
steps:
Expand Down

0 comments on commit d1396a6

Please sign in to comment.