From a00e16ec65fe32242a9926cb31ca8f616bac88a0 Mon Sep 17 00:00:00 2001 From: Eric Cornelissen Date: Thu, 1 Feb 2024 21:27:55 +0100 Subject: [PATCH] Upgrade from 'node16' to 'node20' Upgrade the Node.js version used to run this action from Node.js v16 ('node16') to Node.js v20 ('node20'). For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 9b27750..6ad15a7 100644 --- a/action.yml +++ b/action.yml @@ -10,5 +10,5 @@ branding: color: "purple" description: run gitleaks on push and pull-request events runs: - using: "node16" + using: "node20" main: "dist/index.js"