From 0bcbec1baa1f8a8e823ba8eedd78294f23f4a9bd 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 d76a8519c..43f933a59 100644 --- a/.github/workflows/yarnlint.yml +++ b/.github/workflows/yarnlint.yml @@ -9,7 +9,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Setup Node.js and yarn - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: "18" cache: "yarn"