From cb96b60eacf3bb19777fb9d4411e371b5e7cc92b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 14 Jul 2026 11:52:48 +0000 Subject: [PATCH] chore(deps): update actions/setup-node action to v7 --- .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..587a85e9 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@v7 with: cache: 'npm' - run: npm ci diff --git a/.github/workflows/commitlint.yaml b/.github/workflows/commitlint.yaml index 81b2f304..cf9a38b9 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@v7 with: node-version: "lts/*" - name: Run commitlint diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 294bc263..811b9982 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@v7 with: node-version: ${{ matrix.node-version }} cache: 'npm'