File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -135,11 +135,12 @@ jobs:
135135
136136 - name : Upload artifact
137137 if : startsWith(github.ref, 'refs/tags/v')
138- uses : actions/upload-artifact@v3
138+ uses : actions/upload-artifact@v4
139139 with :
140140 name : bindings-${{ matrix.settings.target }}
141141 path : ${{ env.APP_NAME }}.*.node
142142 if-no-files-found : error
143+ retention-days : 1
143144
144145 test-macOS-windows-binding :
145146 name : Test bindings on ${{ matrix.settings.target }} - node@${{ matrix.node }}
@@ -178,7 +179,7 @@ jobs:
178179 run : npm ci
179180
180181 - name : Download artifacts
181- uses : actions/download-artifact@v3
182+ uses : actions/download-artifact@v4
182183 with :
183184 name : bindings-${{ matrix.settings.target }}
184185 path : .
@@ -222,7 +223,7 @@ jobs:
222223 run : npm ci
223224
224225 - name : Download artifacts
225- uses : actions/download-artifact@v3
226+ uses : actions/download-artifact@v4
226227 with :
227228 name : bindings-x86_64-unknown-linux-gnu
228229 path : .
@@ -262,9 +263,11 @@ jobs:
262263 run : npm ci
263264
264265 - name : Download all artifacts
265- uses : actions/download-artifact@v3
266+ uses : actions/download-artifact@v4
266267 with :
267268 path : artifacts
269+ pattern : bindings-*
270+ merge-multiple : true
268271
269272 - name : Move artifacts
270273 run : |
You can’t perform that action at this time.
0 commit comments