From 0ebfa8c52f509703657bb63d837bb2827aa92b39 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 14 Oct 2025 05:11:36 +0000 Subject: [PATCH] chore(deps): update actions/setup-node action to v6 --- .github/workflows/build-master.yml | 8 ++++---- .github/workflows/pr.yml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-master.yml b/.github/workflows/build-master.yml index ae5eaf4..6346777 100644 --- a/.github/workflows/build-master.yml +++ b/.github/workflows/build-master.yml @@ -17,7 +17,7 @@ jobs: - name: Check out repository code uses: actions/checkout@v3 - name: Use Node.js 17 - uses: actions/setup-node@v3 + uses: actions/setup-node@v6 with: node-version: 17 - name: Install packages @@ -25,7 +25,7 @@ jobs: - name: Transpile with Typescript run: npm run dist --if-present - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} - name: Run tests @@ -43,7 +43,7 @@ jobs: with: fetch-depth: 0 - name: Use Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v6 with: node-version: 17 - name: Generate standard version changelog @@ -68,7 +68,7 @@ jobs: with: fetch-depth: 0 - name: Use Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v6 with: node-version: 17 - name: Install packages diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index b7f7cbe..0134c2f 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -14,7 +14,7 @@ jobs: - name: Check out repository code uses: actions/checkout@v3 - name: Use Node.js 17 - uses: actions/setup-node@v3 + uses: actions/setup-node@v6 with: node-version: 17 - name: Install packages @@ -22,7 +22,7 @@ jobs: - name: Transpile with Typescript run: npm run dist --if-present - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} - name: Run tests