From 21905abb94fe24b5892be5201c7086a8a6906df6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 14 Jul 2026 06:32:49 +0000 Subject: [PATCH] Update actions/setup-node action to v7 --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b9e631d..0ea379c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,7 +25,7 @@ jobs: run: npm version --no-git-tag-version ${{steps.gitversion.outputs.nuGetVersion}}-${{steps.gitversion.outputs.shortSha}} - if: github.ref_type == 'tag' run: npm version --no-git-tag-version ${{steps.gitversion.outputs.nuGetVersion}} - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: node-version: 24 cache: npm @@ -67,7 +67,7 @@ jobs: cname: typescript.typedrest.net - name: Connect to registry (npmjs.com) if: github.ref_type == 'tag' - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: '24' registry-url: https://registry.npmjs.org @@ -78,7 +78,7 @@ jobs: # Publish - name: Connect to registry (GitHub) if: github.event_name == 'push' - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: registry-url: https://npm.pkg.github.com/ scope: '@typedrest'