summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCan Güney Aksakalli <cgaksakalli@gmail.com>2022-01-12 23:11:18 +0100
committerGitHub <noreply@github.com>2022-01-13 01:11:18 +0300
commit14c1dc3be71c80e18848db64423ce4fc0bfd3206 (patch)
tree51414d37190d5d88986f16b476b12087ecd7f4e0
parent04edbb97420293f08bfa08439e6f0cfb5b465271 (diff)
upgrade node version for workflows (#124)
-rw-r--r--.github/workflows/ci.yml6
-rw-r--r--.github/workflows/release.yml2
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 226f2d5..ac2b8ec 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -15,10 +15,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- - name: Use Node.js 14.x
- uses: actions/setup-node@v2.1.5
+ - name: Use Node.js 17.x
+ uses: actions/setup-node@v2
with:
- node-version: '14.x'
+ node-version: '17.x'
- name: Install dependencies
run: npm ci
- name: Lint check
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index fafc6f6..5b79d8e 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -10,7 +10,7 @@ jobs:
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v2
with:
- node-version: '12.x'
+ node-version: '17.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm publish