From 3755c0652aae7f55d569f67f16af2c9b6eda75a1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 2 Nov 2024 11:38:10 +0100 Subject: [PATCH] chore(deps): bump actions/setup-node from 4.0.4 to 4.1.0 (#4928) Bumps [actions/setup-node](https://github.com/actions/setup-node) from 4.0.4 to 4.1.0. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/0a44ba7841725637a19e28fa30b79a866c81b0a6...39370e3970a6d050c480ffad4ff0ed4d3fdee5af) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/changesets.yml | 2 +- .github/workflows/ci.yml | 10 +++++----- .github/workflows/docker-proxy-apache-e2e.yml | 2 +- .github/workflows/docker-proxy-nginx-e2e.yml | 2 +- .github/workflows/e2e-ci.yml | 10 +++++----- .github/workflows/e2e-ui.yml | 2 +- .github/workflows/plugin-generator-e2e.yaml | 2 +- .github/workflows/static-data.yml | 2 +- .github/workflows/ui-components.yml | 2 +- .github/workflows/website.yml | 2 +- .github/workflows/x-e2e-angular-cli-workflow.yml | 6 +++--- .github/workflows/x-e2e-audit-workflow.yml | 2 +- .github/workflows/x-e2e-gatsbyjs-cli-workflow.yml | 4 ++-- .github/workflows/x-e2e-jest-workflow.yml | 14 +++++++------- .github/workflows/x-release-snapshot.yml | 2 +- .github/workflows/x-release.yml | 2 +- .github/workflows/x-smok-test-docker.yml | 2 +- .github/workflows/x-smok-test-module.yml | 2 +- .github/workflows/yarn-ci-lint.yml | 2 +- .github/workflows/yarn-ci.yml | 2 +- 20 files changed, 37 insertions(+), 37 deletions(-) diff --git a/.github/workflows/changesets.yml b/.github/workflows/changesets.yml index b39aaf6fd..22e8eb10c 100644 --- a/.github/workflows/changesets.yml +++ b/.github/workflows/changesets.yml @@ -25,7 +25,7 @@ jobs: fetch-depth: 0 - name: setup node.js - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' env: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 11fbe84b0..f2a93ade2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Node - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: Install pnpm @@ -59,7 +59,7 @@ jobs: steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Node - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: Install pnpm @@ -84,7 +84,7 @@ jobs: steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Use Node - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: Install pnpm @@ -114,7 +114,7 @@ jobs: steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Use Node ${{ matrix.node_version }} - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version: ${{ matrix.node_version }} - name: Install pnpm @@ -141,7 +141,7 @@ jobs: if: (github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository == 'verdaccio/verdaccio') || github.event_name == 'workflow_dispatch' steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: Install pnpm diff --git a/.github/workflows/docker-proxy-apache-e2e.yml b/.github/workflows/docker-proxy-apache-e2e.yml index c6ea6ce05..8f02500dc 100644 --- a/.github/workflows/docker-proxy-apache-e2e.yml +++ b/.github/workflows/docker-proxy-apache-e2e.yml @@ -26,7 +26,7 @@ jobs: run: docker compose -f "./e2e/docker/apache-verdaccio/docker-compose.yaml" up -d --build - name: Install node - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: npm setup diff --git a/.github/workflows/docker-proxy-nginx-e2e.yml b/.github/workflows/docker-proxy-nginx-e2e.yml index 05ff959df..88aa30f32 100644 --- a/.github/workflows/docker-proxy-nginx-e2e.yml +++ b/.github/workflows/docker-proxy-nginx-e2e.yml @@ -24,7 +24,7 @@ jobs: run: docker compose -f "./e2e/docker/proxy-nginx/docker-compose.yaml" up -d --build - name: Install node - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: npm setup diff --git a/.github/workflows/e2e-ci.yml b/.github/workflows/e2e-ci.yml index 206a4876e..1816408a8 100644 --- a/.github/workflows/e2e-ci.yml +++ b/.github/workflows/e2e-ci.yml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Use Node - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: Install pnpm @@ -46,7 +46,7 @@ jobs: steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Use Node - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: Install pnpm @@ -98,7 +98,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version: ${{ matrix.node }} - name: Install pnpm @@ -142,7 +142,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version: ${{ matrix.node }} - name: Install pnpm @@ -187,7 +187,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version: ${{ matrix.node }} - name: Install pnpm diff --git a/.github/workflows/e2e-ui.yml b/.github/workflows/e2e-ui.yml index b17bbba28..c2406ed14 100644 --- a/.github/workflows/e2e-ui.yml +++ b/.github/workflows/e2e-ui.yml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Use Node - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: Install pnpm diff --git a/.github/workflows/plugin-generator-e2e.yaml b/.github/workflows/plugin-generator-e2e.yaml index a0a8ea9f1..2f1cba272 100644 --- a/.github/workflows/plugin-generator-e2e.yaml +++ b/.github/workflows/plugin-generator-e2e.yaml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version: ${{ matrix.node-version }} - name: Install pnpm diff --git a/.github/workflows/static-data.yml b/.github/workflows/static-data.yml index 9a5513c05..c52ded043 100644 --- a/.github/workflows/static-data.yml +++ b/.github/workflows/static-data.yml @@ -24,7 +24,7 @@ jobs: with: persist-credentials: false fetch-depth: 0 - - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version: 18.x - name: install pnpm diff --git a/.github/workflows/ui-components.yml b/.github/workflows/ui-components.yml index ef65e1cea..2bd9f3313 100644 --- a/.github/workflows/ui-components.yml +++ b/.github/workflows/ui-components.yml @@ -26,7 +26,7 @@ jobs: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Use Node - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index baf2f0e61..aa7f32c9a 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -33,7 +33,7 @@ jobs: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Node - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: Install pnpm diff --git a/.github/workflows/x-e2e-angular-cli-workflow.yml b/.github/workflows/x-e2e-angular-cli-workflow.yml index e8c575678..1397d24a5 100644 --- a/.github/workflows/x-e2e-angular-cli-workflow.yml +++ b/.github/workflows/x-e2e-angular-cli-workflow.yml @@ -10,7 +10,7 @@ jobs: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: 'Use Node.js' - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: 'install latest npm' @@ -47,7 +47,7 @@ jobs: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: 'Use Node.js' - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: 'install latest npm 9' @@ -83,7 +83,7 @@ jobs: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: 'Use Node.js' - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: 'install latest npm 10' diff --git a/.github/workflows/x-e2e-audit-workflow.yml b/.github/workflows/x-e2e-audit-workflow.yml index 8f412f4b7..11cfa4722 100644 --- a/.github/workflows/x-e2e-audit-workflow.yml +++ b/.github/workflows/x-e2e-audit-workflow.yml @@ -10,7 +10,7 @@ jobs: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: 'Use Node.js' - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: 'install latest npm 10' diff --git a/.github/workflows/x-e2e-gatsbyjs-cli-workflow.yml b/.github/workflows/x-e2e-gatsbyjs-cli-workflow.yml index ce4cb8515..9f7b7d3c1 100644 --- a/.github/workflows/x-e2e-gatsbyjs-cli-workflow.yml +++ b/.github/workflows/x-e2e-gatsbyjs-cli-workflow.yml @@ -10,7 +10,7 @@ jobs: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: 'Use Node.js' - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: 'install npm 9' @@ -45,7 +45,7 @@ jobs: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: 'Use Node.js' - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: 'install npm 10' diff --git a/.github/workflows/x-e2e-jest-workflow.yml b/.github/workflows/x-e2e-jest-workflow.yml index a343da519..aa469cf9b 100644 --- a/.github/workflows/x-e2e-jest-workflow.yml +++ b/.github/workflows/x-e2e-jest-workflow.yml @@ -10,7 +10,7 @@ jobs: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: 'Use Node.js' - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: Install Dependencies @@ -41,7 +41,7 @@ jobs: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: 'Use Node.js' - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: Install Dependencies @@ -75,7 +75,7 @@ jobs: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: 'Use Node.js' - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: 'install latest npm' @@ -108,7 +108,7 @@ jobs: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: 'Use Node.js' - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: 'install latest npm 9' @@ -141,7 +141,7 @@ jobs: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: 'Use Node.js' - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: 'install latest npm 10' @@ -174,7 +174,7 @@ jobs: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: 'Use Node.js' - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: 'install latest pnpm' @@ -207,7 +207,7 @@ jobs: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: 'Use Node.js' - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: 'install latest pnpm' diff --git a/.github/workflows/x-release-snapshot.yml b/.github/workflows/x-release-snapshot.yml index f0911378b..536888437 100644 --- a/.github/workflows/x-release-snapshot.yml +++ b/.github/workflows/x-release-snapshot.yml @@ -8,7 +8,7 @@ jobs: steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Use Node (latest) - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: Install diff --git a/.github/workflows/x-release.yml b/.github/workflows/x-release.yml index c5f548823..3ee5d9620 100644 --- a/.github/workflows/x-release.yml +++ b/.github/workflows/x-release.yml @@ -8,7 +8,7 @@ jobs: steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Use Node (latest) - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: Install diff --git a/.github/workflows/x-smok-test-docker.yml b/.github/workflows/x-smok-test-docker.yml index f7a67fb37..4bab9c27b 100644 --- a/.github/workflows/x-smok-test-docker.yml +++ b/.github/workflows/x-smok-test-docker.yml @@ -16,7 +16,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: Docker test diff --git a/.github/workflows/x-smok-test-module.yml b/.github/workflows/x-smok-test-module.yml index d8e525e85..13b89db23 100644 --- a/.github/workflows/x-smok-test-module.yml +++ b/.github/workflows/x-smok-test-module.yml @@ -12,7 +12,7 @@ jobs: steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Use Node (latest) - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: Docker test diff --git a/.github/workflows/yarn-ci-lint.yml b/.github/workflows/yarn-ci-lint.yml index 3faefe368..bd5016c14 100644 --- a/.github/workflows/yarn-ci-lint.yml +++ b/.github/workflows/yarn-ci-lint.yml @@ -8,7 +8,7 @@ jobs: steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Use Node - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version-file: '.nvmrc' - name: Install diff --git a/.github/workflows/yarn-ci.yml b/.github/workflows/yarn-ci.yml index 6407e2300..a90a825f9 100644 --- a/.github/workflows/yarn-ci.yml +++ b/.github/workflows/yarn-ci.yml @@ -11,7 +11,7 @@ jobs: steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Use Node ${{ inputs.node_version }} - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version: ${{ inputs.node_version }} - name: Install