Skip to content
This repository was archived by the owner on Feb 24, 2023. It is now read-only.

fix(deps): bump actions/setup-node from 2 to 3.1.0 #78

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/pipeline-development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
with:
fetch-depth: 0
- name : Setup NodeJS
uses: actions/setup-node@v2
uses: actions/setup-node@v3.1.0
with:
node-version: 16
- name: Lint Code Base
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
with:
fetch-depth: 0
- name: install node v14.16
uses: actions/setup-node@v2
uses: actions/setup-node@v3.1.0
with:
node-version: 14.16
- name: yarn install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pipeline-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.0
with:
registry-url: 'https://npm.pkg.github.com'
# Defaults to the user or organization that owns the workflow fil
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pipeline-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.0
with:
node-version: '14.x'
registry-url: 'https://registry.npmjs.org'
Expand Down