From 19fa9da9a4b9f8be7a84069e926851c9ceaf2237 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Oct 2023 09:22:04 -0400 Subject: [PATCH] chore(deps): Bump actions/setup-node from 3 to 4 (#952) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3 to 4.
Release notes

Sourced from actions/setup-node's releases.

v4.0.0

What's Changed

In scope of this release we changed version of node runtime for action from node16 to node20 and updated dependencies in actions/setup-node#866

Besides, release contains such changes as:

New Contributors

Full Changelog: https://github.com/actions/setup-node/compare/v3...v4.0.0

v3.8.2

What's Changed

Full Changelog: https://github.com/actions/setup-node/compare/v3...v3.8.2

v3.8.1

What's Changed

In scope of this release, the filter was removed within the cache-save step by @​dmitry-shibanov in actions/setup-node#831. It is filtered and checked in the toolkit/cache library.

Full Changelog: https://github.com/actions/setup-node/compare/v3...v3.8.1

v3.8.0

What's Changed

Bug fixes:

Feature implementations:

Documentation changes:

Update dependencies:

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-node&package-manager=github_actions&previous-version=3&new-version=4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/deploy-dev-viewer.yml | 2 +- .github/workflows/deploy-prod-viewer.yml | 2 +- .github/workflows/gh-pages.yml | 2 +- .github/workflows/pr.yml | 6 +++--- .github/workflows/release.yml | 2 +- .github/workflows/update-dependencies.yml | 2 +- .github/workflows/update-types.yml | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/deploy-dev-viewer.yml b/.github/workflows/deploy-dev-viewer.yml index 504e4307..f0feb783 100644 --- a/.github/workflows/deploy-dev-viewer.yml +++ b/.github/workflows/deploy-dev-viewer.yml @@ -28,7 +28,7 @@ jobs: with: fetch-depth: 0 - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18 cache: "npm" diff --git a/.github/workflows/deploy-prod-viewer.yml b/.github/workflows/deploy-prod-viewer.yml index 551e00c8..d40f2d2c 100644 --- a/.github/workflows/deploy-prod-viewer.yml +++ b/.github/workflows/deploy-prod-viewer.yml @@ -29,7 +29,7 @@ jobs: with: fetch-depth: 0 - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18 cache: "npm" diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 2432f987..b08450ac 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -23,7 +23,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Setup NodeJS - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18 cache: "npm" diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 277ccc3b..8f601749 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -20,7 +20,7 @@ jobs: with: fetch-depth: 0 - name: Setup NodeJS - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18 cache: "npm" @@ -53,7 +53,7 @@ jobs: with: fetch-depth: 0 - name: Setup NodeJS - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18 cache: "npm" @@ -77,7 +77,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Setup NodeJS - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18 cache: "npm" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fcd88cee..701756d4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,7 +32,7 @@ jobs: token: ${{ steps.generate-token.outputs.token }} - name: Setup NodeJS - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: "lts/*" cache: npm diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index 74ffc31c..fcac8922 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -28,7 +28,7 @@ jobs: ref: main - name: Setup node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: # The specific version of node itself isn't especially important # to us. diff --git a/.github/workflows/update-types.yml b/.github/workflows/update-types.yml index 27680fcf..c3dc3085 100644 --- a/.github/workflows/update-types.yml +++ b/.github/workflows/update-types.yml @@ -70,7 +70,7 @@ jobs: fetch-depth: 0 ref: main - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 'lts/*' cache: 'npm'