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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Install dependencies
run: pnpm install
- name: Download all artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
path: artifacts
- name: Move artifacts
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ jobs:
if: ${{ !matrix.settings.docker }}
shell: bash
- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: bindings-${{ matrix.settings.target }}
path: ${{ env.APP_NAME }}.*.node
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
rm -rf target
rm -rf .pnpm/cache
- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: bindings-freebsd
path: ${{ env.APP_NAME }}.*.node
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:
- name: Install dependencies
run: pnpm install
- name: Download artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: bindings-${{ matrix.settings.target }}
path: .
Expand Down Expand Up @@ -273,7 +273,7 @@ jobs:
- name: Install dependencies
run: pnpm install
- name: Download artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: bindings-x86_64-unknown-linux-gnu
path: .
Expand Down Expand Up @@ -319,7 +319,7 @@ jobs:
pnpm config set supportedArchitectures.libc "musl"
pnpm install
- name: Download artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: bindings-x86_64-unknown-linux-musl
path: .
Expand Down Expand Up @@ -356,7 +356,7 @@ jobs:
version: 10
run_install: false
- name: Download artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: bindings-aarch64-unknown-linux-gnu
path: .
Expand Down Expand Up @@ -398,7 +398,7 @@ jobs:
version: 10
run_install: false
- name: Download artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: bindings-aarch64-unknown-linux-musl
path: .
Expand Down Expand Up @@ -445,7 +445,7 @@ jobs:
version: 10
run_install: false
- name: Download artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: bindings-armv7-unknown-linux-gnueabihf
path: .
Expand Down
Loading