34
34
run : |
35
35
cd sources && dpkg-buildpackage -S
36
36
- name : Upload source package artifact
37
- uses : actions/upload-artifact@v3
37
+ uses : actions/upload-artifact@v4
38
38
with :
39
39
name : source-${{ matrix.dist }}
40
40
path : |
76
76
- name : Prepare sbuild environment
77
77
run : sudo ./debian/setup_sbuild.sh ${{ matrix.dist }} ${{ env.BUILD_ARCH }}
78
78
- name : Get source package
79
- uses : actions/download-artifact@v2
79
+ uses : actions/download-artifact@v4
80
80
with :
81
81
name : source-${{ matrix.dist }}
82
82
- name : Build binary package
87
87
--build ${{ env.BUILD_ARCH }} \
88
88
--dist ${{ matrix.dist }} *.dsc
89
89
- name : Upload binary package artifact
90
- uses : actions/upload-artifact@v2
90
+ uses : actions/upload-artifact@v4
91
91
with :
92
92
name : binary-${{ matrix.dist }}-${{ matrix.arch }}
93
93
path : |
@@ -109,7 +109,9 @@ jobs:
109
109
container : ${{ matrix.image }}
110
110
steps :
111
111
- name : Get binary packages
112
- uses : actions/download-artifact@v2
112
+ uses : actions/download-artifact@v4
113
+ with :
114
+ name : binary-${{ matrix.dist }}-${{ env.ARCH }}
113
115
- name : Install packages
114
116
run : |
115
117
apt-get update
@@ -130,7 +132,9 @@ jobs:
130
132
env :
131
133
APT_SIGNING_KEY : ${{ secrets.APT_SIGNING_KEY }}
132
134
- name : Get binary packages
133
- uses : actions/download-artifact@v2
135
+ uses : actions/download-artifact@v4
136
+ with :
137
+ name : binary-${{ matrix.dist }}-${{ env.ARCH }}
134
138
- name : Setup ruby
135
139
uses : ruby/setup-ruby@v1
136
140
with :
0 commit comments