11
11
runs-on : ubuntu-22.04
12
12
steps :
13
13
- name : Checkout sources
14
- uses : actions/checkout@v2
14
+ uses : actions/checkout@v4
15
15
16
16
- name : Install stable toolchain
17
17
uses : actions-rs/toolchain@v1
33
33
runs-on : ubuntu-22.04
34
34
steps :
35
35
- name : Checkout sources
36
- uses : actions/checkout@v2
36
+ uses : actions/checkout@v4
37
37
38
38
- name : Install stable toolchain
39
39
uses : actions-rs/toolchain@v1
63
63
runs-on : ubuntu-22.04
64
64
steps :
65
65
- name : Checkout sources
66
- uses : actions/checkout@v2
66
+ uses : actions/checkout@v4
67
67
68
68
- name : Install stable toolchain
69
69
uses : actions-rs/toolchain@v1
85
85
runs-on : ubuntu-22.04
86
86
steps :
87
87
- name : Checkout sources
88
- uses : actions/checkout@v2
88
+ uses : actions/checkout@v4
89
89
90
90
- name : Install stable toolchain
91
91
uses : actions-rs/toolchain@v1
@@ -104,7 +104,7 @@ jobs:
104
104
args : --release
105
105
106
106
- name : Upload binary
107
- uses : actions/upload-artifact@v2
107
+ uses : actions/upload-artifact@v4
108
108
with :
109
109
path : target/release/bitbox-bridge
110
110
name : bitbox-bridge-linux-${{github.sha}}
@@ -114,7 +114,7 @@ jobs:
114
114
runs-on : ubuntu-22.04
115
115
steps :
116
116
- name : Checkout sources
117
- uses : actions/checkout@v2
117
+ uses : actions/checkout@v4
118
118
119
119
- name : Install stable toolchain
120
120
uses : actions-rs/toolchain@v1
@@ -134,19 +134,19 @@ jobs:
134
134
run : bitbox-bridge/release/linux/release.sh
135
135
136
136
- name : Upload tar
137
- uses : actions/upload-artifact@v2
137
+ uses : actions/upload-artifact@v4
138
138
with :
139
139
path : bitbox-bridge/release/linux/bitbox-bridge*.tar.bz2
140
140
name : bitbox-bridge-linux-${{github.sha}}.tar.bz2
141
141
142
142
- name : Upload deb
143
- uses : actions/upload-artifact@v2
143
+ uses : actions/upload-artifact@v4
144
144
with :
145
145
path : bitbox-bridge/release/linux/bitbox-bridge*.deb
146
146
name : bitbox-bridge-linux-${{github.sha}}.deb
147
147
148
148
- name : Upload rpm
149
- uses : actions/upload-artifact@v2
149
+ uses : actions/upload-artifact@v4
150
150
with :
151
151
path : bitbox-bridge/release/linux/bitbox-bridge*.rpm
152
152
name : bitbox-bridge-linux-${{github.sha}}.rpm
0 commit comments