Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2021-07-12 09:18:43 +0300
committerRich Trott <rtrott@gmail.com>2021-07-14 14:34:57 +0300
commit4292264c51134fd9e3527031823a16eb1c04bcb7 (patch)
tree06edf177b361bbccfc807cdbe38d990015afd494 /.github
parentefd40eadab78bcba67455d4903764b7ae8a2481e (diff)
tools: use Node.js 16.x for GitHub workflow
find-inactive-collaborators.mjs works fine with Node.js 16.x, but GitHub Actions currently use 14.x by default. PR-URL: https://github.com/nodejs/node/pull/39362 Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/find-inactive-collaborators.yml11
1 files changed, 9 insertions, 2 deletions
diff --git a/.github/workflows/find-inactive-collaborators.yml b/.github/workflows/find-inactive-collaborators.yml
index 8e459b5b8b2..b975fb34030 100644
--- a/.github/workflows/find-inactive-collaborators.yml
+++ b/.github/workflows/find-inactive-collaborators.yml
@@ -13,5 +13,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
- - run: tools/find-inactive-collaborators.mjs '1 year ago'
+ - uses: actions/checkout@v2
+
+ - name: Install Node.js
+ uses: actions/setup-node@v2
+ with:
+ node-version: 16.x
+
+ - name: Find inactive collaborators
+ run: tools/find-inactive-collaborators.mjs '1 year ago'