Skip to content
Open
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
apt-get install --no-install-recommends -y libssl-dev libatomic1

- name: Upload wheels
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: wheels-linux-${{ matrix.platform.target }}
path: dist
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
sccache: "true"
manylinux: musllinux_1_2
- name: Upload wheels
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: wheels-musllinux-${{ matrix.platform.target }}
path: dist
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
args: --release --out dist --find-interpreter --manifest-path ./python-sdk/Cargo.toml
sccache: "true"
- name: Upload wheels
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: wheels-windows-${{ matrix.platform.target }}
path: dist
Expand Down Expand Up @@ -264,7 +264,7 @@ jobs:
- name: List dist directory
run: ls -l dist
- name: Upload wheels
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: wheels-macos-${{ matrix.platform.target }}-py${{ matrix.python-version }}
path: dist
Expand All @@ -289,7 +289,7 @@ jobs:
command: sdist
args: --out dist --manifest-path ./python-sdk/Cargo.toml
- name: Upload sdist
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: wheels-sdist
path: dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ruby-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ jobs:
echo "gem-path=ruby-sdk/$(find pkg -name '*-${{ matrix._.platform }}.gem')" >> $GITHUB_OUTPUT

- name: Upload the cross-compiled gems
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: cross-gem-${{ matrix._.platform }}
path: ${{ steps.set-outputs.outputs.gem-path }}
Expand Down
Loading