Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/release_crypto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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/
Expand Down Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release_sdk_parallel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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/
Expand Down Expand Up @@ -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
Expand Down