File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 9
9
runs-on : windows-latest
10
10
11
11
steps :
12
- - uses : actions/checkout@v1
12
+ - uses : actions/checkout@v4
13
13
14
14
- name : Build release binary
15
15
run : cargo build --verbose --locked --release
16
16
17
17
- name : Upload artifacts
18
- uses : actions/upload-artifact@v1
18
+ uses : actions/upload-artifact@v4
19
19
with :
20
20
name : tarmac-win64
21
21
path : target/release/tarmac.exe
24
24
runs-on : macos-latest
25
25
26
26
steps :
27
- - uses : actions/checkout@v1
27
+ - uses : actions/checkout@v4
28
28
29
29
- name : Install Rust
30
30
run : curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
35
35
cargo build --verbose --locked --release
36
36
37
37
- name : Upload artifacts
38
- uses : actions/upload-artifact@v1
38
+ uses : actions/upload-artifact@v4
39
39
with :
40
40
name : tarmac-macos
41
41
path : target/release/tarmac
@@ -44,15 +44,15 @@ jobs:
44
44
runs-on : ubuntu-latest
45
45
46
46
steps :
47
- - uses : actions/checkout@v1
47
+ - uses : actions/checkout@v4
48
48
49
49
- name : Build
50
50
run : cargo build --locked --verbose --release
51
51
env :
52
52
OPENSSL_STATIC : 1
53
53
54
54
- name : Upload artifacts
55
- uses : actions/upload-artifact@v1
55
+ uses : actions/upload-artifact@v4
56
56
with :
57
57
name : tarmac-linux
58
58
path : target/release/tarmac
You can’t perform that action at this time.
0 commit comments