Skip to content

Commit 2a98bed

Browse files
committed
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.
1 parent a518e4b commit 2a98bed

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/find-inactive-collaborators.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,11 @@ jobs:
1414

1515
steps:
1616
- uses: actions/checkout@v2
17-
- run: tools/find-inactive-collaborators.mjs '1 year ago'
17+
18+
- name: Install Node.js
19+
uses: actions/setup-node@v2
20+
with:
21+
node-version: 16.x
22+
23+
- name: Find inactive collaborators
24+
run: tools/find-inactive-collaborators.mjs '1 year ago'

0 commit comments

Comments
 (0)