Skip to content

Commit b87a787

Browse files
Update ios-automation-test.yaml
1 parent 6d6a210 commit b87a787

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/ios-automation-test.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ jobs:
1717
# Only run this job when the base branch is master
1818
if: github.event.pull_request.base.ref == 'master'
1919
runs-on: macos-latest
20-
timeout-minutes: 10
20+
timeout-minutes: 15
2121

2222
steps:
2323
- name: Checkout Repository
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525

2626
- name: Set up Xcode
2727
uses: maxim-lobanov/setup-xcode@v1
2828
with:
29-
xcode-version: '16.1.0'
29+
xcode-version: '16.2'
3030

3131
- name: Run Linter Check
3232
run: |
@@ -37,7 +37,7 @@ jobs:
3737

3838
- name: Post Lint Test Results to PR
3939
if: github.event_name == 'pull_request' && success()
40-
uses: actions/github-script@v6
40+
uses: actions/github-script@v7
4141
with:
4242
script: |
4343
const comment = `✅ **iOS Lint Test Result**\nCongratulations! Linter Check Passed Successfully 🎉`;
@@ -65,17 +65,17 @@ jobs:
6565
build-and-test:
6666
name: Build and Test
6767
runs-on: macos-latest
68-
timeout-minutes: 45
68+
timeout-minutes: 90
6969

7070
steps:
7171
# Step 1: Checkout the code
7272
- name: Checkout Repository
73-
uses: actions/checkout@v3
73+
uses: actions/checkout@v4
7474

7575
# Step 2: Fetch PR Branch Information
7676
- name: Fetch PR Comments
7777
id: fetch-branches
78-
uses: actions/github-script@v6
78+
uses: actions/github-script@v7
7979
with:
8080
script: |
8181
const prBody = context.payload.pull_request?.body;
@@ -101,7 +101,7 @@ jobs:
101101
- name: Set up Xcode
102102
uses: maxim-lobanov/setup-xcode@v1
103103
with:
104-
xcode-version: '16.1.0'
104+
xcode-version: '16.2'
105105

106106
# Step 4: Set Environment Variables
107107
- name: Set Environment Variables
@@ -209,7 +209,7 @@ jobs:
209209
# Step 9: Post Test Results as a PR Comment
210210
- name: Post Test Results to PR
211211
if: github.event_name == 'pull_request'
212-
uses: actions/github-script@v6
212+
uses: actions/github-script@v7
213213
with:
214214
script: |
215215
const fs = require('fs');

0 commit comments

Comments
 (0)