From 58e01cdcc7dfe3cf7dd1851bfb3b635cb190c432 Mon Sep 17 00:00:00 2001 From: Bernhard Kirchen Date: Fri, 20 Sep 2024 16:34:37 +0200 Subject: [PATCH] actions: switch to node version 20 for linting use version consistent with the version used when building the web application. --- .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 43f933a59..2522410a9 100644 --- a/.github/workflows/yarnlint.yml +++ b/.github/workflows/yarnlint.yml @@ -11,7 +11,7 @@ jobs: - name: Setup Node.js and yarn uses: actions/setup-node@v4 with: - node-version: "18" + node-version: "20" cache: "yarn" cache-dependency-path: "webapp/yarn.lock"