actions: use setup-node@v4 as v3 causes warning

the "Yarn Linting" action causes a warning to appear about a deprecated
Node version. switch to actions/setup-node@v4, which is already in use
by the action building the web app for the firmware, to avoid this
warning.
This commit is contained in:
Bernhard Kirchen 2024-09-20 16:17:23 +02:00 committed by Thomas Basler
parent 00626b63f7
commit ee3b62d671

View File

@ -9,7 +9,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Setup Node.js and yarn
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18"
cache: "yarn"