@@ -66,20 +66,20 @@ jobs:
6666
6767 steps :
6868 - name : Checkout
69- uses : actions/checkout@v4
69+ uses : actions/checkout@v7
7070 with :
7171 # Need full history so the release-name walk below can reach
7272 # older commits with `git log --grep=^ReleaseName:`.
7373 fetch-depth : 0
7474
7575 - name : Set up JDK
76- uses : actions/setup-java@v4
76+ uses : actions/setup-java@v5
7777 with :
7878 distribution : temurin
7979 java-version : ' 21'
8080
8181 - name : Set up Gradle
82- uses : gradle/actions/setup-gradle@v4
82+ uses : gradle/actions/setup-gradle@v5
8383
8484 # Resolve the sticky ReleaseName marker for version stamping. The
8585 # tag itself is already resolved once at workflow level into
@@ -172,7 +172,7 @@ jobs:
172172 ${{ steps.stage.outputs.aab }}
173173
174174 - name : Upload Android artifacts
175- uses : actions/upload-artifact@v4
175+ uses : actions/upload-artifact@v7
176176 with :
177177 name : android-release
178178 path : |
@@ -202,18 +202,18 @@ jobs:
202202
203203 steps :
204204 - name : Checkout
205- uses : actions/checkout@v4
205+ uses : actions/checkout@v7
206206 with :
207207 fetch-depth : 0
208208
209209 - name : Set up JDK
210- uses : actions/setup-java@v4
210+ uses : actions/setup-java@v5
211211 with :
212212 distribution : temurin
213213 java-version : ' 21'
214214
215215 - name : Set up Gradle
216- uses : gradle/actions/setup-gradle@v4
216+ uses : gradle/actions/setup-gradle@v5
217217
218218 # Kotlin/Native compiler + platform libs + prebuilts land under
219219 # ~/.konan on every fresh macOS runner. Missing it adds ~5 min per
@@ -222,7 +222,7 @@ jobs:
222222 # compiler; loosely restored across other keys so a Kotlin
223223 # patch-bump doesn't force a full cold miss.
224224 - name : Cache Kotlin/Native (~/.konan)
225- uses : actions/cache@v4
225+ uses : actions/cache@v6
226226 with :
227227 path : ~/.konan
228228 key : konan-${{ runner.os }}-${{ hashFiles('gradle.properties') }}-${{ hashFiles('**/*.gradle.kts', 'gradle/libs.versions.toml') }}
@@ -237,7 +237,7 @@ jobs:
237237 # output gates whether pod install needs --repo-update below.
238238 - name : Cache CocoaPods
239239 id : pods-cache
240- uses : actions/cache@v4
240+ uses : actions/cache@v6
241241 with :
242242 path : |
243243 ~/.cocoapods
@@ -349,7 +349,7 @@ jobs:
349349 subject-path : ${{ steps.stage.outputs.ipa }}
350350
351351 - name : Upload iOS artifact
352- uses : actions/upload-artifact@v4
352+ uses : actions/upload-artifact@v7
353353 with :
354354 name : ios-release
355355 path : ${{ steps.stage.outputs.ipa }}
@@ -377,13 +377,13 @@ jobs:
377377
378378 steps :
379379 - name : Download Android artifacts
380- uses : actions/download-artifact@v4
380+ uses : actions/download-artifact@v8
381381 with :
382382 name : android-release
383383 path : dist/
384384
385385 - name : Download iOS artifact
386- uses : actions/download-artifact@v4
386+ uses : actions/download-artifact@v8
387387 with :
388388 name : ios-release
389389 path : dist/
@@ -396,7 +396,7 @@ jobs:
396396 # so the maintainer can review auto-generated notes / signal builds
397397 # before making the release public.
398398 - name : Publish draft release
399- uses : softprops/action-gh-release@v2
399+ uses : softprops/action-gh-release@v3
400400 with :
401401 tag_name : ${{ env.RELEASE_TAG }}
402402 name : ${{ env.RELEASE_TAG }}
0 commit comments