@@ -34,14 +34,14 @@ jobs:
34
34
- name : Build Java bridge
35
35
run : cd rustexbridge && cargo build --release --target x86_64-unknown-linux-gnu
36
36
- name : Upload
37
- uses : actions/upload-artifact@v3
37
+ uses : actions/upload-artifact@v4
38
38
with :
39
39
name : linux
40
40
path : |
41
41
./rustex/target/x86_64-unknown-linux-gnu/release/librustex.rlib
42
42
./rustex/target/x86_64-unknown-linux-gnu/release/librustex.so
43
43
./rustex/target/x86_64-unknown-linux-gnu/release/rustex
44
- - uses : actions/upload-artifact@v3
44
+ - uses : actions/upload-artifact@v4
45
45
with :
46
46
name : bridge_linux
47
47
path : ./rustexbridge/target/x86_64-unknown-linux-gnu/release/librustex_java.so
@@ -61,15 +61,15 @@ jobs:
61
61
- name : Build Java bridge
62
62
run : cd rustexbridge && cargo build --release --target x86_64-pc-windows-msvc
63
63
- name : Upload
64
- uses : actions/upload-artifact@v3
64
+ uses : actions/upload-artifact@v4
65
65
with :
66
66
name : windows
67
67
path : |
68
68
./rustex/target/x86_64-pc-windows-msvc/release/librustex.rlib
69
69
./rustex/target/x86_64-pc-windows-msvc/release/rustex.dll
70
70
./rustex/target/x86_64-pc-windows-msvc/release/rustex.dll.lib
71
71
./rustex/target/x86_64-pc-windows-msvc/release/rustex.exe
72
- - uses : actions/upload-artifact@v3
72
+ - uses : actions/upload-artifact@v4
73
73
with :
74
74
name : bridge_windows
75
75
path : ./rustexbridge/target/x86_64-pc-windows-msvc/release/rustex_java.dll
@@ -85,14 +85,14 @@ jobs:
85
85
- name : Build Java bridge
86
86
run : cd rustexbridge && cargo build --release --target x86_64-apple-darwin
87
87
- name : Upload Mac
88
- uses : actions/upload-artifact@v3
88
+ uses : actions/upload-artifact@v4
89
89
with :
90
90
name : mac_x86
91
91
path : |
92
92
./rustex/target/x86_64-apple-darwin/release/librustex.rlib
93
93
./rustex/target/x86_64-apple-darwin/release/librustex.dylib
94
94
./rustex/target/x86_64-apple-darwin/release/rustex
95
- - uses : actions/upload-artifact@v3
95
+ - uses : actions/upload-artifact@v4
96
96
with :
97
97
name : bridge_mac_x86
98
98
path : ./rustexbridge/target/x86_64-apple-darwin/release/librustex_java.dylib
@@ -108,14 +108,14 @@ jobs:
108
108
- name : Build Java bridge
109
109
run : cd rustexbridge && cargo build --release --target aarch64-apple-darwin
110
110
- name : Upload Mac
111
- uses : actions/upload-artifact@v3
111
+ uses : actions/upload-artifact@v4
112
112
with :
113
113
name : mac_aarch64
114
114
path : |
115
115
./rustex/target/aarch64-apple-darwin/release/librustex.rlib
116
116
./rustex/target/aarch64-apple-darwin/release/librustex.dylib
117
117
./rustex/target/aarch64-apple-darwin/release/rustex
118
- - uses : actions/upload-artifact@v3
118
+ - uses : actions/upload-artifact@v4
119
119
with :
120
120
name : bridge_mac_aarch64
121
121
path : ./rustexbridge/target/aarch64-apple-darwin/release/librustex_java.dylib
@@ -125,37 +125,37 @@ jobs:
125
125
environment : production
126
126
steps :
127
127
- uses : actions/checkout@v3
128
- - uses : actions/download-artifact@v2
128
+ - uses : actions/download-artifact@v4
129
129
with :
130
130
name : bridge_linux
131
131
path : ./
132
- - uses : actions/download-artifact@v2
132
+ - uses : actions/download-artifact@v4
133
133
with :
134
134
name : bridge_windows
135
135
path : ./
136
- - uses : actions/download-artifact@v2
136
+ - uses : actions/download-artifact@v4
137
137
with :
138
138
name : bridge_mac_aarch64
139
139
path : ./
140
140
- name : Rename file
141
141
run : mv ./librustex_java.dylib ./librustex_java_aarch64.dylib
142
- - uses : actions/download-artifact@v2
142
+ - uses : actions/download-artifact@v4
143
143
with :
144
144
name : bridge_mac_x86
145
145
path : ./
146
- - uses : actions/download-artifact@v2
146
+ - uses : actions/download-artifact@v4
147
147
with :
148
148
name : linux
149
149
path : ./linux
150
- - uses : actions/download-artifact@v2
150
+ - uses : actions/download-artifact@v4
151
151
with :
152
152
name : windows
153
153
path : ./windows
154
- - uses : actions/download-artifact@v2
154
+ - uses : actions/download-artifact@v4
155
155
with :
156
156
name : mac_x86
157
157
path : ./mac_x86
158
- - uses : actions/download-artifact@v2
158
+ - uses : actions/download-artifact@v4
159
159
with :
160
160
name : mac_aarch64
161
161
path : ./mac_aarch64
0 commit comments