@@ -38,18 +38,19 @@ jobs:
3838 engine : [v8, qjs-ng]
3939 target : ${{ inputs.release && fromJSON('["editor","template_release","template_debug"]') || fromJSON('["editor"]') }}
4040 steps :
41- - name : Select Xcode 16
42- run : sudo xcode-select -s /Applications/Xcode_16.2.app
41+ # From https://github.com/actions/runner-images/blob/main/images/macos
42+ - name : Select Xcode 26
43+ run : sudo xcode-select -s /Applications/Xcode_26.0.1.app
4344
4445 - name : Checkout Godot
45- uses : actions/checkout@v4
46+ uses : actions/checkout@v6
4647 with :
4748 repository : godotengine/godot
4849 ref : ${{ inputs.version_ref }}
4950 submodules : recursive
5051
5152 - name : Checkout GodotJS
52- uses : actions/checkout@v4
53+ uses : actions/checkout@v6
5354 with :
5455 path : ${{github.workspace}}/modules/GodotJS/
5556 lfs : true
@@ -155,6 +156,7 @@ jobs:
155156 run : |
156157 lipo -create ./bin/godot.macos.${{ matrix.target }}.x86_64 ./bin/godot.macos.${{ matrix.target }}.arm64 -output ./bin/godot.macos.${{ matrix.target }}.universal
157158 rm ./bin/godot.macos.${{ matrix.target }}.x86_64 ./bin/godot.macos.${{ matrix.target }}.arm64
159+ rm -rf ./bin/build_deps
158160 strip bin/godot.*
159161 chmod +x bin/godot.*
160162
@@ -182,7 +184,7 @@ jobs:
182184 engine : [v8, qjs-ng]
183185 steps :
184186 - name : Checkout Godot
185- uses : actions/checkout@v4
187+ uses : actions/checkout@v6
186188 with :
187189 repository : godotengine/godot
188190 ref : ${{ inputs.version_ref }}
0 commit comments