From 824b6c582a443d9044a4b132955869e04f43096d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 24 Feb 2022 17:22:03 +0000 Subject: [PATCH] Bump actions/setup-node from 2.5.1 to 3.0.0 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 2.5.1 to 3.0.0.
Release notes

Sourced from actions/setup-node's releases.

v3.0.0

In scope of this release we changed version of the runtime Node.js for the setup-node action and updated package-lock.json file to v2.

Breaking Changes

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-node&package-manager=github_actions&previous-version=2.5.1&new-version=3.0.0)](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 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)
--- .github/workflows/pr.yml | 2 +- .github/workflows/test.yml | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index bb7554b8b..fc6dababd 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: actions/setup-node@v2.5.1 + - uses: actions/setup-node@v3.0.0 with: node-version: "12.x" - run: npm install && npm run lint diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fce96ae33..9ab82a21f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,7 +26,7 @@ jobs: os: [macOS-latest, windows-latest] steps: - uses: actions/checkout@v2 - - uses: actions/setup-node@v2.5.1 + - uses: actions/setup-node@v3.0.0 with: node-version: "12.x" - run: .github/workflows/build-and-test.sh @@ -46,7 +46,7 @@ jobs: image: ${{ matrix.docker_image }} steps: - uses: actions/checkout@v2 - - uses: actions/setup-node@v2.5.1 + - uses: actions/setup-node@v3.0.0 with: node-version: "12.x" - run: .github/workflows/build-and-test.sh @@ -73,7 +73,7 @@ jobs: - galactic steps: - uses: actions/checkout@v2 - - uses: actions/setup-node@v2.5.1 + - uses: actions/setup-node@v3.0.0 with: node-version: "12.x" - run: .github/workflows/build-and-test.sh @@ -139,7 +139,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: actions/setup-node@v2.5.1 + - uses: actions/setup-node@v3.0.0 with: node-version: "12.x" - run: .github/workflows/build-and-test.sh @@ -159,7 +159,7 @@ jobs: image: ubuntu:focal steps: - uses: actions/checkout@v1 - - uses: actions/setup-node@v2.5.1 + - uses: actions/setup-node@v3.0.0 with: node-version: "12.x" - run: .github/workflows/build-and-test.sh @@ -176,7 +176,7 @@ jobs: image: ubuntu:focal steps: - uses: actions/checkout@v1 - - uses: actions/setup-node@v2.5.1 + - uses: actions/setup-node@v3.0.0 with: node-version: "12.x" - run: .github/workflows/build-and-test.sh @@ -191,7 +191,7 @@ jobs: image: rostooling/setup-ros-docker:ubuntu-focal-latest steps: - uses: actions/checkout@v1 - - uses: actions/setup-node@v2.5.1 + - uses: actions/setup-node@v3.0.0 with: node-version: "12.x" - run: .github/workflows/build-and-test.sh