From 947f58723c45b20e02e15606a1de7865ad63ba11 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 14 Oct 2025 06:41:42 +0000 Subject: [PATCH] chore(deps): update actions/setup-node action to v6 --- .github/actions/prepare/action.yml | 2 +- .github/workflows/release-npm.yml | 2 +- .github/workflows/test-javascript.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/prepare/action.yml b/.github/actions/prepare/action.yml index cb53a572..25edafd3 100644 --- a/.github/actions/prepare/action.yml +++ b/.github/actions/prepare/action.yml @@ -4,7 +4,7 @@ runs: using: "composite" steps: - name: with Node.js 16 on ubuntu-latest - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: 22.x cache: "npm" diff --git a/.github/workflows/release-npm.yml b/.github/workflows/release-npm.yml index 1b4657af..6b556975 100644 --- a/.github/workflows/release-npm.yml +++ b/.github/workflows/release-npm.yml @@ -19,7 +19,7 @@ jobs: environment: Release steps: - uses: actions/checkout@v5 - - uses: actions/setup-node@v5 + - uses: actions/setup-node@v6 with: node-version: '24.x' cache: 'npm' diff --git a/.github/workflows/test-javascript.yml b/.github/workflows/test-javascript.yml index 106aa51e..92d1ec91 100644 --- a/.github/workflows/test-javascript.yml +++ b/.github/workflows/test-javascript.yml @@ -38,7 +38,7 @@ jobs: run: git config --global core.autocrlf input - uses: actions/checkout@v5 - name: with Node.js ${{ matrix.node-version }} on ${{ matrix.os }} - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} - run: npm ci @@ -64,7 +64,7 @@ jobs: run: git config --global core.autocrlf input - uses: actions/checkout@v5 - name: with Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} - run: npm ci