From 9b38258355724d0b2464b02141472b07907eecb3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Feb 2022 01:01:08 +0000 Subject: [PATCH] fix(deps): bump actions/setup-node from 2 to 3 Bumps [actions/setup-node](https://github.com/actions/setup-node) from 2 to 3. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/pipeline-development.yml | 4 ++-- .github/workflows/pipeline-publish.yml | 2 +- .github/workflows/pipeline-release.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pipeline-development.yml b/.github/workflows/pipeline-development.yml index db1f1d5..3f056d7 100644 --- a/.github/workflows/pipeline-development.yml +++ b/.github/workflows/pipeline-development.yml @@ -54,7 +54,7 @@ jobs: with: fetch-depth: 0 - name : Setup NodeJS - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: 16 - name: Lint Code Base @@ -105,7 +105,7 @@ jobs: with: fetch-depth: 0 - name: install node v14.16 - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: 14.16 - name: yarn install diff --git a/.github/workflows/pipeline-publish.yml b/.github/workflows/pipeline-publish.yml index fb98659..74cf113 100644 --- a/.github/workflows/pipeline-publish.yml +++ b/.github/workflows/pipeline-publish.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@v2 #TODO: Create NPM Publish # Setup .npmrc file to publish to GitHub Packages - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 with: registry-url: 'https://npm.pkg.github.com' # Defaults to the user or organization that owns the workflow fil diff --git a/.github/workflows/pipeline-release.yml b/.github/workflows/pipeline-release.yml index 5ed73aa..aaec11f 100644 --- a/.github/workflows/pipeline-release.yml +++ b/.github/workflows/pipeline-release.yml @@ -13,7 +13,7 @@ jobs: steps: - uses: actions/checkout@v2 # Setup .npmrc file to publish to npm - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 with: node-version: '14.x' registry-url: 'https://registry.npmjs.org'