From 2f77b9e5008cf0d18ddb95b51dc62a27cbc74a9d 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 23ed9c7..10d7c12 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"