56
56
tag_name : ${{ steps.version.outputs.tag }}
57
57
release_name : Version ${{ steps.version.outputs.tag }}
58
58
- name : Download java release artifacts from ubuntu-22.04
59
- uses : actions/download-artifact@v3
59
+ uses : actions/download-artifact@v4
60
60
with :
61
61
name : release-ubuntu-22.04
62
62
path : release/ubuntu-22.04
75
75
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
76
76
77
77
- name : Download java release artifacts from macos-12
78
- uses : actions/download-artifact@v3
78
+ uses : actions/download-artifact@v4
79
79
with :
80
80
name : release-macos-12
81
81
path : release/macos-12
94
94
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
95
95
96
96
# - name: Download iOS release artifacts from build-cpp
97
- # uses: actions/download-artifact@v3
97
+ # uses: actions/download-artifact@v4
98
98
# with:
99
99
# name: release-iOS
100
100
# path: release/release-iOS
@@ -141,13 +141,13 @@ jobs:
141
141
args : --release
142
142
- name : Upload artifacts for ubuntu-22.04
143
143
if : startsWith(matrix.os, 'ubuntu')
144
- uses : actions/upload-artifact@v3
144
+ uses : actions/upload-artifact@v4
145
145
with :
146
146
name : release-ubuntu-22.04
147
147
path : target/release/libironoxide_java.so
148
148
- name : Upload artifacts for macos-12
149
149
if : startsWith(matrix.os, 'macos')
150
- uses : actions/upload-artifact@v3
150
+ uses : actions/upload-artifact@v4
151
151
with :
152
152
name : release-macos-12
153
153
path : target/release/libironoxide_java.dylib
@@ -172,7 +172,7 @@ jobs:
172
172
# tar -r -f ironoxide-homebrew.tar -C target/universal/release libironoxide.a
173
173
# gzip ironoxide-homebrew.tar
174
174
# - name: Upload iOS artifact
175
- # uses: actions/upload-artifact@v3
175
+ # uses: actions/upload-artifact@v4
176
176
# with:
177
177
# name: release-iOS
178
178
# path: ironoxide-homebrew.tar.gz
0 commit comments