Skip to content

Commit 20b2956

Browse files
authored
Pin Windows runner images to Windows Server 2022. (vmangos#3098)
This will prevent the upcoming `windows-latest` image label migration[1] from potentially breaking the Windows workflows. [1]: https://github.blog/changelog/2025-07-31-github-actions-new-apis-and-windows-latest-migration-notice/#windows-latest-image-label-migration
1 parent 5372b1a commit 20b2956

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/dev-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ on:
1919

2020
jobs:
2121
build:
22-
runs-on: windows-latest
23-
22+
runs-on: windows-2022
23+
2424
steps:
2525
#git checkout
2626
- uses: actions/checkout@v4
@@ -31,7 +31,7 @@ jobs:
3131
ACE_VERSION: 7.0.9
3232
ACE_VERSION2: 7_0_9
3333
TBB_VERSION: 2020.3
34-
34+
3535
run: |
3636
#directory variables
3737
export ACE_ROOT=$GITHUB_WORKSPACE/ACE_wrappers

.github/workflows/vmangos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
os: [ubuntu-latest]
4545
compiler: [gcc, clang]
4646
include:
47-
- os: windows-latest
47+
- os: windows-2022
4848

4949
steps:
5050

@@ -60,7 +60,7 @@ jobs:
6060
sudo apt-get -qq install build-essential cmake libace-dev libmysql++-dev libtbb-dev libcurl4-openssl-dev openssl
6161
#windows dependencies
6262
- name: windows dependencies
63-
if: matrix.os == 'windows-latest'
63+
if: matrix.os == 'windows-2022'
6464
#Sets versions for ACE/TBB
6565
env:
6666
ACE_VERSION: 7.0.9
@@ -97,7 +97,7 @@ jobs:
9797
make install
9898
#windows
9999
- name: windows build & install
100-
if: matrix.os == 'windows-latest'
100+
if: matrix.os == 'windows-2022'
101101
run: |
102102
# Build ACE
103103
export ACE_ROOT=$GITHUB_WORKSPACE/ACE_wrappers

0 commit comments

Comments
 (0)