CodingGarden / listd

listd is a Full Stack App that will allow users to create, share and watch lists of YouTube channels. This app is being built LIVE on Twitch https://twitch.tv/codinggarden
https://twitch.tv/codinggarden
MIT License
193 stars 53 forks source link

Node.js 12 actions are deprecated. Please update the following actions to use Node.js 16: actions/checkout@v2, actions/setup-node@v2 #110

Closed Hex09AF closed 1 year ago

Hex09AF commented 1 year ago

Describe the problem

image

Resolved the warning by using node v16

Describe the proposed solution

Following the basic setup in https://github.com/actions/setup-node

We can resolved the warning using the below code in our github workflows checks.yaml file

    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-node@v3

Have you checked if this issue has already been raised?

Code of Conduct

w3cj commented 1 year ago

Updated!