Skip to content

Commit 7c89d3d

Browse files
authored
Merge pull request #73 from dimastbk/renovate/major-github-artifact-actions
chore(deps): update github artifact actions to v4 (major)
2 parents 7a631d7 + ad885af commit 7c89d3d

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/CI.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -237,9 +237,9 @@ jobs:
237237

238238
- run: twine check --strict dist/*
239239

240-
- uses: actions/upload-artifact@v3
240+
- uses: actions/upload-artifact@v4
241241
with:
242-
name: wheels
242+
name: wheels-${{ matrix.platform || matrix.os }}-${{ matrix.target }}-${{ matrix.manylinux || 'auto' }}
243243
path: dist
244244

245245
release:
@@ -258,10 +258,11 @@ jobs:
258258
- run: pip install -U twine
259259

260260
- name: get dist artifacts
261-
uses: actions/download-artifact@v3
261+
uses: actions/download-artifact@v4
262262
with:
263-
name: wheels
264263
path: dist
264+
pattern: wheels-*
265+
merge-multiple: true
265266

266267
- run: twine check dist/*
267268

0 commit comments

Comments
 (0)