Merge pull request #23 from bcomnes/dependabot/github_actions/actions/setup-node-v2.1.3

chore(deps): bump actions/setup-node from v2.1.2 to v2.1.3
This commit is contained in:
Bret
2020-12-11 10:30:10 -07:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

@@ -15,7 +15,7 @@ jobs:
# Set up any tools and build steps here # Set up any tools and build steps here
# This example uses a Node.js toolchain to build a site # This example uses a Node.js toolchain to build a site
- name: Use Node.js - name: Use Node.js
uses: actions/setup-node@v2.1.2 uses: actions/setup-node@v2.1.3
with: with:
node-version: 12 node-version: 12
- name: Install deps and build - name: Install deps and build

View File

@@ -18,7 +18,7 @@ jobs:
with: with:
# fetch full history so things like auto-changelog work properly # fetch full history so things like auto-changelog work properly
fetch-depth: 0 fetch-depth: 0
- uses: actions/setup-node@v2.1.2 - uses: actions/setup-node@v2.1.3
with: with:
node-version: ${{ env.node_version }} node-version: ${{ env.node_version }}
# setting a registry enables the NODE_AUTH_TOKEN env variable where we can set an npm token. REQUIRED # setting a registry enables the NODE_AUTH_TOKEN env variable where we can set an npm token. REQUIRED

View File

@@ -14,7 +14,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node }} - name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v2.1.2 uses: actions/setup-node@v2.1.3
with: with:
node-version: ${{ matrix.node }} node-version: ${{ matrix.node }}
- name: npm install && npm test - name: npm install && npm test