From ee3b62d671fa59e1996cf4c7eed69c49ff7818af Mon Sep 17 00:00:00 2001 From: Bernhard Kirchen Date: Fri, 20 Sep 2024 16:17:23 +0200 Subject: [PATCH] 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. --- .github/workflows/yarnlint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/yarnlint.yml b/.github/workflows/yarnlint.yml index f1c912c..23ed9c7 100644 --- a/.github/workflows/yarnlint.yml +++ b/.github/workflows/yarnlint.yml @@ -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"