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
parent ea1592ed0d
commit 0bcbec1baa

View File

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