3939 xcode-version : ${{ matrix.xcode }}
4040
4141 - name : Checkout Code
42- uses : actions/checkout@v2
42+ uses : actions/checkout@v4
4343
4444 - name : Setup Environment
4545 run : |
6363 xcodebuild -project "Half.xcodeproj" -scheme "Half" -testPlan "HalfTests" -destination "platform=iOS Simulator,name=$IOS_SIM" -configuration Debug RUN_DOCUMENTATION_COMPILER=NO SKIP_SWIFTLINT=YES ONLY_ACTIVE_ARCH=YES test 2>&1 | tee "$LOGSDIR/test-ios.log"
6464
6565 - name : Upload Logs
66- uses : actions/upload-artifact@v2
66+ uses : actions/upload-artifact@v3
6767 if : always()
6868 with :
6969 name : iOSBuildLogs
8787 xcode-version : ${{ matrix.xcode }}
8888
8989 - name : Checkout Code
90- uses : actions/checkout@v2
90+ uses : actions/checkout@v4
9191
9292 - name : Setup Environment
9393 run : |
@@ -102,7 +102,7 @@ jobs:
102102 xcodebuild -project "Half.xcodeproj" -scheme "Half" -testPlan "HalfTests" -destination "platform=macOS,variant=Mac Catalyst" -configuration Debug RUN_DOCUMENTATION_COMPILER=NO SKIP_SWIFTLINT=YES ONLY_ACTIVE_ARCH=YES test 2>&1 | tee "$LOGSDIR/test-maccatalyst.log"
103103
104104 - name : Upload Logs
105- uses : actions/upload-artifact@v2
105+ uses : actions/upload-artifact@v3
106106 if : always()
107107 with :
108108 name : MacCatalystBuildLogs
@@ -126,7 +126,7 @@ jobs:
126126 xcode-version : ${{ matrix.xcode }}
127127
128128 - name : Checkout Code
129- uses : actions/checkout@v2
129+ uses : actions/checkout@v4
130130
131131 - name : Setup Environment
132132 run : |
@@ -141,7 +141,7 @@ jobs:
141141 xcodebuild -project "Half.xcodeproj" -scheme "Half macOS" -testPlan "Half macOS Tests" -configuration Debug RUN_DOCUMENTATION_COMPILER=NO SKIP_SWIFTLINT=YES ONLY_ACTIVE_ARCH=YES test 2>&1 | tee "$LOGSDIR/test-macos.log"
142142
143143 - name : Upload Logs
144- uses : actions/upload-artifact@v2
144+ uses : actions/upload-artifact@v3
145145 if : always()
146146 with :
147147 name : macOSBuildLogs
@@ -165,7 +165,7 @@ jobs:
165165 xcode-version : ${{ matrix.xcode }}
166166
167167 - name : Checkout Code
168- uses : actions/checkout@v2
168+ uses : actions/checkout@v4
169169
170170 - name : Setup Environment
171171 run : |
@@ -189,7 +189,7 @@ jobs:
189189 xcodebuild -project "Half.xcodeproj" -scheme "Half tvOS" -testPlan "Half tvOS Tests" -destination "platform=tvOS Simulator,name=$TVOS_SIM" -configuration Debug RUN_DOCUMENTATION_COMPILER=NO SKIP_SWIFTLINT=YES ONLY_ACTIVE_ARCH=YES test 2>&1 | tee "$LOGSDIR/test-tvos.log"
190190
191191 - name : Upload Logs
192- uses : actions/upload-artifact@v2
192+ uses : actions/upload-artifact@v3
193193 if : always()
194194 with :
195195 name : tvOSBuildLogs
@@ -213,7 +213,7 @@ jobs:
213213 xcode-version : ${{ matrix.xcode }}
214214
215215 - name : Checkout Code
216- uses : actions/checkout@v2
216+ uses : actions/checkout@v4
217217
218218 - name : Setup Environment
219219 run : |
@@ -237,7 +237,7 @@ jobs:
237237 xcodebuild -project "Half.xcodeproj" -scheme "Half watchOS" -testPlan "Half watchOS Tests" -destination "platform=watchOS Simulator,name=$WATCHOS_SIM" -configuration Debug RUN_DOCUMENTATION_COMPILER=NO SKIP_SWIFTLINT=YES ONLY_ACTIVE_ARCH=YES test 2>&1 | tee "$LOGSDIR/test-watchos.log"
238238
239239 - name : Upload Logs
240- uses : actions/upload-artifact@v2
240+ uses : actions/upload-artifact@v3
241241 if : always()
242242 with :
243243 name : watchOSBuildLogs
0 commit comments