From 53434f9b2f97bd3ad26c832f28795cf3aeec4d1b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Feb 2022 07:25:08 +0000 Subject: [PATCH] Bump actions/setup-node from 2 to 3.0.0 Bumps [actions/setup-node](https://github.com/actions/setup-node) from 2 to 3.0.0. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v2...v3.0.0) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- .github/workflows/format.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8c2641b..83f3ac6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: uses: actions/checkout@v2 - name: Set Node version to ${{ matrix.node_version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v3.0.0 with: node-version: ${{ matrix.node_version }} cache: 'yarn' @@ -53,7 +53,7 @@ jobs: fetch-depth: 0 - name: Set Node version to 16 - uses: actions/setup-node@v2 + uses: actions/setup-node@v3.0.0 with: node-version: 16 cache: 'yarn' diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index 84fb3b7..c918fe7 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v2 with: ref: ${{ github.head_ref }} - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3.0.0 with: node-version: ${{ env.node_version }} - run: yarn --frozen-lockfile --ignore-engines diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b5af6d9..2191c1a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: fetch-depth: 0 # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits - name: Set up Node.js 14.x - uses: actions/setup-node@v2 + uses: actions/setup-node@v3.0.0 with: node-version: 14.x