From 0a82e29d244aeca3d076da02ffb84a8d4035d6c1 Mon Sep 17 00:00:00 2001 From: thc202 Date: Fri, 23 Feb 2024 17:53:32 +0000 Subject: [PATCH] Actually use Node.js 20 in custom action Missed adding change in previous PR. Signed-off-by: thc202 --- .github/actions/update-website/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/update-website/action.yml b/.github/actions/update-website/action.yml index 047e3b1..0f8113d 100644 --- a/.github/actions/update-website/action.yml +++ b/.github/actions/update-website/action.yml @@ -14,5 +14,5 @@ inputs: description: 'the email of the pull request author' required: true runs: - using: 'node16' + using: 'node20' main: 'dist/index.js'