Closed
Description
Following the recent blog post "GitHub Actions: All Actions will begin running on Node16 instead of Node12" by GitHub, I noticed this action is still running on node12
:
Lines 58 to 60 in e42e372
It should be fairly easy to change this by replacing using: node12
with using: node16
- I wouldn't expect anything in this Action's source code to break as a result of that.
One thing to note, by and large I've seen other Actions use a major version bump when releasing this change. The motivation being that older GitHub Actions runners may not support node16
. See for example the "What's new" section of actions/checkout
.