diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 7642df3..658f3d3 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -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 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 361db4f..359ce04 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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/ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6132f01..3eb9afe 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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