@@ -236,7 +236,7 @@ jobs:
236236 env :
237237 ASSET_NAME : voicevox_core-${{ matrix.artifact_name }}-${{ needs.config.outputs.version }}
238238 steps :
239- - uses : actions/checkout@v5
239+ - uses : actions/checkout@v6
240240 # NOTE: PyO3の制約で、RustのターゲットとPythonのビット数を一致させる必要がある。
241241 # https://github.com/PyO3/pyo3/blob/v0.27.1/pyo3-ffi/build.rs#L138-L143
242242 - name : Determine Python interpreter architecture
@@ -346,7 +346,7 @@ jobs:
346346 APPLE_P12_PASSWORD : ${{ secrets.APPLE_P12_PASSWORD }}
347347 - name : Upload artifact to build XCFramework
348348 if : matrix.c_release_format == 'ios-xcframework'
349- uses : actions/upload-artifact@v4
349+ uses : actions/upload-artifact@v7
350350 with :
351351 name : voicevox_core-${{ matrix.target }}
352352 path : artifact/${{ env.ASSET_NAME }}
@@ -368,7 +368,7 @@ jobs:
368368 files : ${{ steps.build-voicevox-core-python-api.outputs.whl }}
369369 - name : Upload voicevox_core_java_api artifact
370370 if : matrix.java
371- uses : actions/upload-artifact@v4
371+ uses : actions/upload-artifact@v7
372372 with :
373373 name : voicevox_core_java_api-${{ matrix.artifact_name }}
374374 path : java_artifact
@@ -383,16 +383,16 @@ jobs:
383383 IOS_AARCH64_PATH : artifact/voicevox_core-aarch64-apple-ios
384384 ASSET_NAME : voicevox_core-ios-xcframework-cpu-${{ needs.config.outputs.version }}
385385 steps :
386- - uses : actions/checkout@v5
387- - uses : actions/download-artifact@v5
386+ - uses : actions/checkout@v6
387+ - uses : actions/download-artifact@v8
388388 with :
389389 name : voicevox_core-x86_64-apple-ios
390390 path : ${{ env.IOS_X86_64_PATH }}
391- - uses : actions/download-artifact@v5
391+ - uses : actions/download-artifact@v8
392392 with :
393393 name : voicevox_core-aarch64-apple-ios-sim
394394 path : ${{ env.IOS_AARCH64_SIM_PATH }}
395- - uses : actions/download-artifact@v5
395+ - uses : actions/download-artifact@v8
396396 with :
397397 name : voicevox_core-aarch64-apple-ios
398398 path : ${{ env.IOS_AARCH64_PATH }}
@@ -419,7 +419,7 @@ jobs:
419419 if : ${{ needs.config.outputs.mode == 'draft-release' || needs.config.outputs.mode == 'full-test' }}
420420 needs : [config, create_draft_release, build]
421421 steps :
422- - uses : actions/checkout@v5
422+ - uses : actions/checkout@v6
423423 - name : Set up Rust
424424 uses : ./.github/actions/rust-toolchain-from-file
425425 - name : Set up Java
@@ -435,7 +435,7 @@ jobs:
435435 run : cargo set-version ${{ needs.config.outputs.version }} -p voicevox_core_java_api
436436
437437 - name : " Download artifact"
438- uses : actions/download-artifact@v5
438+ uses : actions/download-artifact@v8
439439 with :
440440 pattern : voicevox_core_java_api-*
441441 path : artifacts/
0 commit comments