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'