Skip to content
Closed
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
8 changes: 4 additions & 4 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,12 +180,12 @@ jobs:
- name: Install dependencies
run: yarn install
- name: Download macOS x64 artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: bindings-x86_64-apple-darwin
path: bindings/node
- name: Download macOS arm64 artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: bindings-aarch64-apple-darwin
path: bindings/node
Expand Down Expand Up @@ -218,12 +218,12 @@ jobs:
- name: Install dependencies
run: yarn install
- name: Download native artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
pattern: bindings-*
path: bindings/node/artifacts
- name: Download generated index artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: generated-index
path: bindings/node
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
pattern: wheels-*
path: dist
Expand Down
Loading