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
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- run: npm ci
- run: npm run build
- run: npm run bench | tee bench-results.txt
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: bench-results-${{ inputs.ref }}
path: bench-results.txt
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
- run: npm run test:coverage
- name: Upload coverage
if: matrix.os == 'ubuntu-latest' && matrix.node == 22
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v6
with:
files: ./coverage/lcov.info
fail_ci_if_error: false
Expand All @@ -94,7 +94,7 @@ jobs:
test -f dist/index.cjs
test -f dist/index.d.ts
test -f dist/index.d.cts
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: dist
path: dist/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ jobs:
run: npm publish --access public

- name: Create GitHub Release
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
with:
generate_release_notes: true
Loading