From 064413f9af9a21ab5711b09b20f8dd0162a70df6 Mon Sep 17 00:00:00 2001 From: Tony Aiuto Date: Thu, 21 Mar 2024 15:51:04 -0400 Subject: [PATCH] update scorecard workflow to newer nodejs setup All the runs started failing with messages from github about node 16 not being supported and needing node 20. I hop this helps --- .github/workflows/scorecard.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml index 171697d6..6094810b 100644 --- a/.github/workflows/scorecard.yml +++ b/.github/workflows/scorecard.yml @@ -31,6 +31,9 @@ jobs: # actions: read steps: + - name: Setup Node.js environment + uses: actions/setup-node@v4.0.2 + - name: "Checkout code" uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 with: