Skip to content

Commit eea57e5

Browse files
Upgrade github actions.
1 parent 94c8139 commit eea57e5

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/wheel.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,9 @@ jobs:
3434
bazelisk build //:wheel
3535
bazelisk run //:wheel_rename
3636
37-
- uses: actions/upload-artifact@v3
37+
- uses: actions/upload-artifact@v4
3838
with:
39+
name: artifact-${{ matrix.os }}-${{ matrix.python-version }}
3940
path: bazel-bin/*.whl
4041

4142
upload_pypi:
@@ -49,10 +50,11 @@ jobs:
4950
if: github.event_name == 'release' && github.event.action == 'published'
5051
steps:
5152
- name: Download wheels
52-
uses: actions/download-artifact@v3
53+
uses: actions/download-artifact@v4
5354
with:
54-
name: artifact
55+
pattern: 'artifact-*'
5556
path: dist
57+
merge-multiple: true
5658

5759
- name: Publish to PyPI
5860
uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)