diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index a4ab36e..d6b9fe6 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: - node-version: [20, 22, 24] + node-version: [20, 22, 24, 25] platform: [ubuntu-latest] runs-on: ${{ matrix.platform }} @@ -23,7 +23,7 @@ jobs: - name: Install pnpm uses: pnpm/action-setup@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} cache: 'pnpm' diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c746f19..688aa16 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,9 +12,9 @@ jobs: steps: - uses: actions/checkout@v5 - uses: pnpm/action-setup@v4 - - uses: actions/setup-node@v5 + - uses: actions/setup-node@v6 with: - node-version: 22 + node-version: 24 registry-url: 'https://registry.npmjs.org' cache: pnpm - run: pnpm i -r @@ -27,5 +27,3 @@ jobs: publish_dir: docs publish_branch: gh-pages - run: npm publish --access public --provenance - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}