From e91edadbc663c09aad3ec917ff88ba174dea72ae Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 16 Mar 2026 01:26:57 +0000 Subject: [PATCH] Update actions/setup-node action to v6.3.0 --- .github/workflows/public-analyze-code-graph.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/public-analyze-code-graph.yml b/.github/workflows/public-analyze-code-graph.yml index f2ded550d..824b0e675 100644 --- a/.github/workflows/public-analyze-code-graph.yml +++ b/.github/workflows/public-analyze-code-graph.yml @@ -216,12 +216,12 @@ jobs: run: echo "pnpmDetected=$(if [ -f "pnpm-lock.yaml" ]; then echo "true"; else echo "false"; fi)" >> $GITHUB_ENV - name: (Code Analysis JavaScript Setup) Setup Node.js with version in .nvmrc for cloned source repository if: inputs.source-repository != '' && env.nodeVersionFileDetected == 'true' - uses: actions/setup-node@v6.2.0 + uses: actions/setup-node@v6.3.0 with: node-version-file: temp/${{ inputs.analysis-name }}/source/${{ inputs.analysis-name }}/.nvmrc - name: (Code Analysis JavaScript Setup) Setup Node.js (long-term support version fallback, no .nvmrc) for cloned source repository if: inputs.source-repository != '' && env.nodeVersionFileDetected != 'true' - uses: actions/setup-node@v6.2.0 + uses: actions/setup-node@v6.3.0 with: node-version: 'lts/*' - name: (Code Analysis JavaScript Setup) Setup pnpm for cloned source repository