Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ jobs:
node scripts/smoke-native.cjs

- name: Upload artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: bindings-${{ matrix.settings.target }}
path: rust/*.node
Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:
run: npm ci

- name: Download all artifacts
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
path: artifacts

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
run: node scripts/smoke-native.cjs

- name: Upload native addon artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: bindings-${{ matrix.platform-arch }}
path: rust/*.node
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
run: npm ci --ignore-scripts

- name: Download native addon artifact
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: bindings-${{ matrix.platform-arch }}
path: artifacts
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
run: node scripts/smoke-native.cjs

- name: Upload native addon artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: bindings-${{ matrix.platform-arch }}
path: rust/*.node
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
run: npm ci --ignore-scripts

- name: Download native addon artifact
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: bindings-${{ matrix.platform-arch }}
path: artifacts
Expand All @@ -199,7 +199,7 @@ jobs:

- name: Upload coverage
if: matrix.os == 'ubuntu-24.04' && matrix.node-version == 24 && matrix.arch == 'x64'
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: coverage-lcov
path: coverage
Expand Down