From 4651b4e6a6c5040535f1cb3061367b33cf7409e0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Dec 2020 22:36:08 +0000 Subject: [PATCH] chore(deps): bump actions/setup-node from v2.1.3 to v2.1.4 (#25) Bumps [actions/setup-node](https://github.com/actions/setup-node) from v2.1.3 to v2.1.4. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v2.1.3...c46424eee26de4078d34105d3de3cc4992202b1e) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/neocities.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/neocities.yml b/.github/workflows/neocities.yml index 6290d84..9db6f0d 100644 --- a/.github/workflows/neocities.yml +++ b/.github/workflows/neocities.yml @@ -15,7 +15,7 @@ jobs: # Set up any tools and build steps here # This example uses a Node.js toolchain to build a site - name: Use Node.js - uses: actions/setup-node@v2.1.3 + uses: actions/setup-node@v2.1.4 with: node-version: 12 - name: Install deps and build diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ab49a7b..3180be7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: with: # fetch full history so things like auto-changelog work properly fetch-depth: 0 - - uses: actions/setup-node@v2.1.3 + - uses: actions/setup-node@v2.1.4 with: node-version: ${{ env.node_version }} # setting a registry enables the NODE_AUTH_TOKEN env variable where we can set an npm token. REQUIRED diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a79c08d..123dace 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node }} - uses: actions/setup-node@v2.1.3 + uses: actions/setup-node@v2.1.4 with: node-version: ${{ matrix.node }} - name: npm install && npm test