-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Description
actions/checkout@v2 use node 12 which is deprecated in Github Actions by default.
I think we have tow options
- specify node-version using setup-node action
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
- update to checkout@v3
steps:
- uses: actions/checkout@v3 #node 16 by default
Metadata
Metadata
Assignees
Labels
No labels