diff --git a/.github/workflows/release_crypto.yml b/.github/workflows/release_crypto.yml index c4fbd3ae..cfd46896 100644 --- a/.github/workflows/release_crypto.yml +++ b/.github/workflows/release_crypto.yml @@ -109,7 +109,7 @@ jobs: - name: Upload target artifacts if: success() || failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: targets-${{ matrix.target }} if-no-files-found: error @@ -120,7 +120,7 @@ jobs: # The FFI bindings will be identical for the 4 architectures, so upload as artifact # only once. if: (success() || failure()) && matrix.target == 'x86_64-linux-android' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: ffi-bindings if-no-files-found: error @@ -146,14 +146,14 @@ jobs: git config user.email github-actions@github.com - name: Download target artifacts to their right folders - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: pattern: targets-* merge-multiple: true path: crypto/crypto-android/src/main/jniLibs/ - name: Download FFI bindings to their package - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: name: ffi-bindings path: crypto/crypto-android/src/main/kotlin/ @@ -192,7 +192,7 @@ jobs: - name: Upload AAR results if: success() || failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: sdk-android-release if-no-files-found: error diff --git a/.github/workflows/release_sdk_parallel.yml b/.github/workflows/release_sdk_parallel.yml index 0a0e1ced..7ec010f2 100644 --- a/.github/workflows/release_sdk_parallel.yml +++ b/.github/workflows/release_sdk_parallel.yml @@ -109,7 +109,7 @@ jobs: - name: Upload target artifacts if: success() || failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: targets-${{ matrix.target }} if-no-files-found: error @@ -120,7 +120,7 @@ jobs: # The FFI bindings will be identical for the 4 architectures, so upload as artifact # only once. if: (success() || failure()) && matrix.target == 'x86_64-linux-android' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: ffi-bindings if-no-files-found: error @@ -146,14 +146,14 @@ jobs: git config user.email github-actions@github.com - name: Download target artifacts to their right folders - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: pattern: targets-* merge-multiple: true path: sdk/sdk-android/src/main/jniLibs/ - name: Download FFI bindings to their package - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: name: ffi-bindings path: sdk/sdk-android/src/main/kotlin/ @@ -192,7 +192,7 @@ jobs: - name: Upload AAR results if: success() || failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: sdk-android-release if-no-files-found: error