Skip to content

Commit dbad0e6

Browse files
committed
Update nightly health check workflow
1 parent 70a7936 commit dbad0e6

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/nightly-health-check.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ on:
66
- cron: "0 7 * * *"
77

88
env:
9-
XCODE_VERSION: "16.4"
9+
MACOS_VERSION: "macos-26"
10+
XCODE_VERSION: "26.1"
1011

1112
jobs:
1213
tuist-generation:
13-
runs-on: macos-15
14+
runs-on: ${{ env.MACOS_VERSION }}
1415
timeout-minutes: 8
1516
name: Run Tuist Generation
1617
steps:
@@ -31,7 +32,7 @@ jobs:
3132
key: ${{ github.run_id }}-dependencies
3233

3334
run-swift-builds:
34-
runs-on: macos-15
35+
runs-on: ${{ env.MACOS_VERSION }}
3536
timeout-minutes: 15
3637
strategy:
3738
fail-fast: false
@@ -53,7 +54,7 @@ jobs:
5354
cd ${{ matrix.package }} && swift build
5455
5556
build-and-unit-test:
56-
runs-on: macos-15
57+
runs-on: ${{ env.MACOS_VERSION }}
5758
needs: tuist-generation
5859
timeout-minutes: 20
5960
strategy:
@@ -153,7 +154,7 @@ jobs:
153154
TestResults/ResultBundle.zip
154155
155156
run-codegen-test-configurations:
156-
runs-on: macos-15
157+
runs-on: ${{ env.MACOS_VERSION }}
157158
timeout-minutes: 20
158159
name: Codegen Test Configurations - macOS
159160
steps:
@@ -168,7 +169,7 @@ jobs:
168169
./scripts/run-test-codegen-configurations.sh -t
169170
170171
send-slack-status-notification:
171-
runs-on: macos-15
172+
runs-on: ${{ env.MACOS_VERSION }}
172173
if: ${{ always() }}
173174
timeout-minutes: 5
174175
needs: [tuist-generation, run-swift-builds, build-and-unit-test, run-codegen-test-configurations]

0 commit comments

Comments
 (0)