@@ -68,10 +68,11 @@ jobs:
68
68
steps :
69
69
- name : Clone
70
70
uses : actions/checkout@v2
71
- - uses : actions/download-artifact@v3
71
+ - uses : actions/download-artifact@v4
72
72
with :
73
- name : release-checksums
74
73
path : wrappers/node/checksums
74
+ pattern : release-checksums-*
75
+ merge-multiple : true
75
76
76
77
- name : Get Version
77
78
run : echo GIT_VERSION="$(git describe --tags | sed 's/^v\(.*\)$/\1/')" >> $GITHUB_ENV
@@ -122,9 +123,9 @@ jobs:
122
123
steps :
123
124
- name : Clone
124
125
uses : actions/checkout@v2
125
- - uses : actions/download-artifact@v3
126
+ - uses : actions/download-artifact@v4
126
127
with :
127
- name : release
128
+ name : release-${{ matrix.target }}
128
129
path : build-artifacts
129
130
130
131
- name : Get Version
@@ -186,10 +187,12 @@ jobs:
186
187
- name : Get Tag
187
188
run : echo GIT_TAG="$(node ./.backstage/get_tag.cjs)" >> $GITHUB_ENV
188
189
189
- - uses : actions/download-artifact@v3
190
+ - uses : actions/download-artifact@v4
190
191
with :
191
- name : release
192
192
path : build-artifacts
193
+ pattern : release-*
194
+ merge-multiple : true
195
+
193
196
- name : Build CHANGELOG
194
197
if : env.GIT_TAG == 'latest'
195
198
run : |
@@ -406,15 +409,15 @@ jobs:
406
409
echo "CHECKSUM_PATH=$CHECKSUM_PATH" >> $GITHUB_ENV
407
410
408
411
- name : Upload build artifacts
409
- uses : actions/upload-artifact@v3
412
+ uses : actions/upload-artifact@v4
410
413
with :
411
- name : release
414
+ name : release-${{ matrix.target }}
412
415
path : |
413
416
${{ env.ASSET_PATH }}
414
417
${{ env.CHECKSUM_PATH }}
415
418
- name : Upload build artifacts
416
- uses : actions/upload-artifact@v3
419
+ uses : actions/upload-artifact@v4
417
420
with :
418
- name : release-checksums
421
+ name : release-checksums-${{ matrix.target }}
419
422
path : |
420
423
${{ env.CHECKSUM_PATH }}
0 commit comments