Skip to content

Commit

Permalink
tools: use Node.js 16.x for GitHub workflow
Browse files Browse the repository at this point in the history
find-inactive-collaborators.mjs works fine with Node.js 16.x, but GitHub
Actions currently use 14.x by default.
  • Loading branch information
Trott committed Jul 12, 2021
1 parent a518e4b commit 2a98bed
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/find-inactive-collaborators.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,11 @@ jobs:

steps:
- uses: actions/checkout@v2
- run: tools/find-inactive-collaborators.mjs '1 year ago'

- 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'

0 comments on commit 2a98bed

Please sign in to comment.