Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ jobs:
echo "archive=$archive" >> "$GITHUB_OUTPUT"
echo "::notice::$archive is $(du -h "$archive" | cut -f1)"

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
# Prefixed so the publish job can ask for the binaries alone: the
# GitHub release carries those, and PyPI carries the wheels.
Expand Down Expand Up @@ -365,7 +365,7 @@ jobs:
pip install pytest pandas
pytest tests -q

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: python-wheel-${{ matrix.target }}
path: packages/carp-python/dist/*.whl
Expand Down Expand Up @@ -416,7 +416,7 @@ jobs:
print('the sdist builds and imports:', carp.__version__)
"

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: python-sdist
path: packages/carp-python/dist/*.tar.gz
Expand Down
Loading