Skip to content

Commit 985710a

Browse files
Update GitHub Artifact Actions
1 parent 5e10ae8 commit 985710a

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/release_crypto.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
110110
- name: Upload target artifacts
111111
if: success() || failure()
112-
uses: actions/upload-artifact@v4
112+
uses: actions/upload-artifact@v5
113113
with:
114114
name: targets-${{ matrix.target }}
115115
if-no-files-found: error
@@ -120,7 +120,7 @@ jobs:
120120
# The FFI bindings will be identical for the 4 architectures, so upload as artifact
121121
# only once.
122122
if: (success() || failure()) && matrix.target == 'x86_64-linux-android'
123-
uses: actions/upload-artifact@v4
123+
uses: actions/upload-artifact@v5
124124
with:
125125
name: ffi-bindings
126126
if-no-files-found: error
@@ -146,14 +146,14 @@ jobs:
146146
git config user.email [email protected]
147147
148148
- name: Download target artifacts to their right folders
149-
uses: actions/download-artifact@v4
149+
uses: actions/download-artifact@v6
150150
with:
151151
pattern: targets-*
152152
merge-multiple: true
153153
path: crypto/crypto-android/src/main/jniLibs/
154154

155155
- name: Download FFI bindings to their package
156-
uses: actions/download-artifact@v4
156+
uses: actions/download-artifact@v6
157157
with:
158158
name: ffi-bindings
159159
path: crypto/crypto-android/src/main/kotlin/
@@ -192,7 +192,7 @@ jobs:
192192
193193
- name: Upload AAR results
194194
if: success() || failure()
195-
uses: actions/upload-artifact@v4
195+
uses: actions/upload-artifact@v5
196196
with:
197197
name: sdk-android-release
198198
if-no-files-found: error

.github/workflows/release_sdk_parallel.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
110110
- name: Upload target artifacts
111111
if: success() || failure()
112-
uses: actions/upload-artifact@v4
112+
uses: actions/upload-artifact@v5
113113
with:
114114
name: targets-${{ matrix.target }}
115115
if-no-files-found: error
@@ -120,7 +120,7 @@ jobs:
120120
# The FFI bindings will be identical for the 4 architectures, so upload as artifact
121121
# only once.
122122
if: (success() || failure()) && matrix.target == 'x86_64-linux-android'
123-
uses: actions/upload-artifact@v4
123+
uses: actions/upload-artifact@v5
124124
with:
125125
name: ffi-bindings
126126
if-no-files-found: error
@@ -146,14 +146,14 @@ jobs:
146146
git config user.email [email protected]
147147
148148
- name: Download target artifacts to their right folders
149-
uses: actions/download-artifact@v4
149+
uses: actions/download-artifact@v6
150150
with:
151151
pattern: targets-*
152152
merge-multiple: true
153153
path: sdk/sdk-android/src/main/jniLibs/
154154

155155
- name: Download FFI bindings to their package
156-
uses: actions/download-artifact@v4
156+
uses: actions/download-artifact@v6
157157
with:
158158
name: ffi-bindings
159159
path: sdk/sdk-android/src/main/kotlin/
@@ -192,7 +192,7 @@ jobs:
192192
193193
- name: Upload AAR results
194194
if: success() || failure()
195-
uses: actions/upload-artifact@v4
195+
uses: actions/upload-artifact@v5
196196
with:
197197
name: sdk-android-release
198198
if-no-files-found: error

0 commit comments

Comments
 (0)