From ed7d4a69c1dac6572e559670767d391c09a3e018 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Oct 2025 05:15:09 +0000 Subject: [PATCH] Bump actions/setup-node from 4 to 6 Bumps [actions/setup-node](https://github.com/actions/setup-node) from 4 to 6. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/main.yaml | 4 ++-- .github/workflows/run-release.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 3200228..c53c37d 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -24,7 +24,7 @@ jobs: packages: write steps: - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version-file: ".nvmrc" cache: "npm" @@ -44,7 +44,7 @@ jobs: NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} # To the public NPM Registry - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version-file: ".nvmrc" cache: "npm" diff --git a/.github/workflows/run-release.yaml b/.github/workflows/run-release.yaml index 27b9053..8299f23 100644 --- a/.github/workflows/run-release.yaml +++ b/.github/workflows/run-release.yaml @@ -29,7 +29,7 @@ jobs: # token cannot trigger other workflows # https://github.community/t/github-actions-workflow-not-triggering-with-tag-push/17053/2 token: ${{ secrets.GH_TOKEN_COMMIT_AND_BYPASS_BRANCH_PROTECTION }} - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version: "18.x" registry-url: "https://npm.pkg.github.com"