7575
7676 steps :
7777 - name : Checkout repo
78- uses : actions/checkout@v4
78+ uses : actions/checkout@v6
7979
8080 - name : Print runner environment diagnostics
8181 run : |
@@ -122,7 +122,7 @@ jobs:
122122
123123 - name : Restore Xcode derived data from branch cache
124124 id : xcode-restore-cache
125- uses : actions/cache@v4
125+ uses : actions/cache@v5
126126 with :
127127 path : |
128128 ~/Library/Developer/Xcode/DerivedData
@@ -135,7 +135,7 @@ jobs:
135135 if : ${{ steps.xcode-restore-cache.outputs.cache-hit != 'true' && github.ref_name
136136 != 'main' }}
137137 id : xcode-restore-cache-main
138- uses : actions/cache/restore@v4
138+ uses : actions/cache/restore@v5
139139 with :
140140 path : |
141141 ~/Library/Developer/Xcode/DerivedData
@@ -168,7 +168,7 @@ jobs:
168168
169169 - name : Restore .metamask folder
170170 id : restore-metamask
171- uses : actions/cache@v4
171+ uses : actions/cache@v5
172172 with :
173173 path : .metamask
174174 key : .metamask-${{ hashFiles('package.json', 'yarn.lock') }}
@@ -196,7 +196,7 @@ jobs:
196196
197197 - name : Restore iOS app matching fingerprint from branch cache
198198 id : cache-restore
199- uses : actions/cache@v4
199+ uses : actions/cache@v5
200200 with :
201201 path : ios/build/Build/Products/Release-iphonesimulator/MetaMask.app
202202 key : bitrise-ios-app-${{ github.ref_name }}-v${{ env.IOS_APP_CACHE_VERSION
@@ -206,7 +206,7 @@ jobs:
206206 if : ${{ steps.cache-restore.outputs.cache-hit != 'true' && github.ref_name !=
207207 ' main' }}
208208 id : cache-restore-main
209- uses : actions/cache/restore@v4
209+ uses : actions/cache/restore@v5
210210 with :
211211 path : ios/build/Build/Products/Release-iphonesimulator/MetaMask.app
212212 key : bitrise-ios-app-main-v${{ env.IOS_APP_CACHE_VERSION }}-${{
@@ -303,7 +303,7 @@ jobs:
303303
304304 - name : Upload iOS APP Artifact (Simulator)
305305 id : upload-app
306- uses : actions/upload-artifact@v4
306+ uses : actions/upload-artifact@v6
307307 with :
308308 name : main-qa-MetaMask.app
309309 path : ios/build/Build/Products/Release-iphonesimulator/MetaMask.app
@@ -314,7 +314,7 @@ jobs:
314314 id : upload-sourcemap
315315 if : ${{ steps.cache-restore.outputs.cache-hit == 'true' ||
316316 steps.cache-restore-main.outputs.cache-hit == 'true' }}
317- uses : actions/upload-artifact@v4
317+ uses : actions/upload-artifact@v6
318318 with :
319319 name : main-qa-index.js.map
320320 path : sourcemaps/ios/index.js.map
0 commit comments