From ad8a2fd0006c3bf4663b9434c9d73fa6ee490cb7 Mon Sep 17 00:00:00 2001 From: Mats Svensson Date: Tue, 12 Nov 2024 09:47:00 +0100 Subject: [PATCH] [TASK] use node 20 in test --- .github/workflows/code-guidelines.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/code-guidelines.yml b/.github/workflows/code-guidelines.yml index 74383cc..e4bac1e 100644 --- a/.github/workflows/code-guidelines.yml +++ b/.github/workflows/code-guidelines.yml @@ -11,7 +11,11 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 + - name: Use Node.js v 20 + uses: actions/setup-node@v4 + with: + node-version: '20.x' - name: Lint shell scripts with Shellcheck run: docker run --rm -v "$PWD:/mnt" koalaman/shellcheck-alpine:stable find /mnt -type f -name '*.sh' -exec shellcheck '{}' +