Skip to content

Commit 0dc078d

Browse files
ShadowCat567Vieltojarvi
andauthored
Switched Windows runner to 2025 (#2838)
* switched windows runner to 2025 * extended timeouts --------- Co-authored-by: Vieltojarvi <[email protected]>
1 parent 3b4f18f commit 0dc078d

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/health_checks.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ jobs:
114114
os_for_e2e+=', "macos-14-xlarge"'
115115
fi
116116
if [ "${{ inputs.include-windows }}" != "false" ]; then
117-
os+=', "windows-latest"'
118-
os_for_e2e+=', "windows-latest"'
117+
os+=', "windows-2025"'
118+
os_for_e2e+=', "windows-2025"'
119119
fi
120120
os+=']'
121121
os_for_e2e+=']'
@@ -245,7 +245,7 @@ jobs:
245245
- build
246246
- resolve_inputs
247247
runs-on: ubuntu-latest
248-
timeout-minutes: 15
248+
timeout-minutes: 20
249249
steps:
250250
- name: Checkout pull request ref
251251
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # version 4.1.4
@@ -463,7 +463,7 @@ jobs:
463463
matrix: ${{ fromJson(needs.e2e_generate_deployment_tests_matrix.outputs.matrix) }}
464464
runs-on: ${{ matrix.os }}
465465
name: e2e_deployment ${{ matrix.displayNames }} ${{ matrix.node-version }} ${{ matrix.os }}
466-
timeout-minutes: ${{ matrix.os == 'windows-latest' && 35 || 25 }}
466+
timeout-minutes: ${{ matrix.os == 'windows-2025' && 35 || 25 }}
467467
needs:
468468
- do_include_e2e
469469
- build
@@ -511,7 +511,7 @@ jobs:
511511
matrix: ${{ fromJson(needs.e2e_generate_sandbox_tests_matrix.outputs.matrix) }}
512512
runs-on: ${{ matrix.os }}
513513
name: e2e_sandbox ${{ matrix.displayNames }} ${{ matrix.node-version }} ${{ matrix.os }}
514-
timeout-minutes: ${{ matrix.os == 'windows-latest' && 35 || 25 }}
514+
timeout-minutes: ${{ matrix.os == 'windows-2025' && 35 || 25 }}
515515
needs:
516516
- do_include_e2e
517517
- build
@@ -540,7 +540,7 @@ jobs:
540540
os: ${{ fromJSON(needs.resolve_inputs.outputs.os) }}
541541
runs-on: ${{ matrix.os }}
542542
name: e2e_notices ${{ matrix.os }}
543-
timeout-minutes: 5
543+
timeout-minutes: ${{ matrix.os == 'windows-2025' && 8 || 5 }}
544544
needs:
545545
- do_include_e2e
546546
- build
@@ -595,14 +595,14 @@ jobs:
595595
exclude:
596596
- os: macos-14
597597
node-version: 20
598-
- os: windows-latest
598+
- os: windows-2025
599599
node-version: 18
600600
- os: macos-14
601601
node-version: 22
602-
- os: windows-latest
602+
- os: windows-2025
603603
node-version: 22
604604
runs-on: ${{ matrix.os }}
605-
timeout-minutes: ${{ matrix.os == 'windows-latest' && 35 || 25 }}
605+
timeout-minutes: ${{ matrix.os == 'windows-2025' && 35 || 25 }}
606606
needs:
607607
- do_include_e2e
608608
- build

0 commit comments

Comments
 (0)