From d22bb82ffb7f3eed6754918ca1eac9f02d9dc5d3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 2 Feb 2026 17:42:46 +0000 Subject: [PATCH] chore(deps): update actions/setup-node action to v6 --- .github/workflows/code-format.yaml | 2 +- .github/workflows/commitlint.yaml | 2 +- .github/workflows/test.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/code-format.yaml b/.github/workflows/code-format.yaml index 3e7b392e..12344d2c 100644 --- a/.github/workflows/code-format.yaml +++ b/.github/workflows/code-format.yaml @@ -12,7 +12,7 @@ jobs: steps: - uses: actions/checkout@v5 - name: Setup Node.js - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: cache: 'npm' - run: npm ci diff --git a/.github/workflows/commitlint.yaml b/.github/workflows/commitlint.yaml index 81b2f304..6845e80b 100644 --- a/.github/workflows/commitlint.yaml +++ b/.github/workflows/commitlint.yaml @@ -10,7 +10,7 @@ jobs: with: fetch-depth: 0 - name: Setup Node.js - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: "lts/*" - name: Run commitlint diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 294bc263..9c752436 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -18,7 +18,7 @@ jobs: steps: - uses: actions/checkout@v5 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} cache: 'npm'