From e44d2197c34c00ea4edef6c0c27a3113edf03f3f Mon Sep 17 00:00:00 2001 From: Mark van Ments <35492184+MarkvanMents@users.noreply.github.com> Date: Fri, 2 Feb 2024 10:46:55 +0100 Subject: [PATCH] Upgrade Node version for Linter Action --- .github/workflows/lint-action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint-action.yml b/.github/workflows/lint-action.yml index 5b675afa723..161a09537cc 100644 --- a/.github/workflows/lint-action.yml +++ b/.github/workflows/lint-action.yml @@ -21,11 +21,11 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - name: Checkout repo uses: actions/checkout@v3 - # Installs NodeJS v16 in runner environment + # Installs NodeJS v20 in runner environment (upgraded from v16 in Feb 2024) - name: Install NodeJS uses: actions/setup-node@v3 with: - node-version: '16' + node-version: '20' # Installs linting tool via npm - name: Install markdown linter run: npm install markdownlint-cli2 --global