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
committerMichaël Zasso <targos@protonmail.com>2021-09-04 16:14:26 +0300
commitd94814849809e3a169361053c696299250bf4844 (patch)
tree826a4be88c320ebd3b8bbada51d28e0ae223f33a /.github
parent831f266d6fc5f6e2454ca21faa12a0b9fe3c4784 (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'