From 14c1dc3be71c80e18848db64423ce4fc0bfd3206 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Can=20G=C3=BCney=20Aksakalli?= Date: Wed, 12 Jan 2022 23:11:18 +0100 Subject: [PATCH] upgrade node version for workflows (#124) --- .github/workflows/ci.yml | 6 +++--- .github/workflows/release.yml | 2 +- 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