From 803e078eb599890256679b164357599b8681de13 Mon Sep 17 00:00:00 2001 From: Gregor Martynus <39992+gr2m@users.noreply.github.com> Date: Tue, 22 Aug 2023 10:24:39 -0700 Subject: [PATCH] feat: use `node20` as runner (#23) should be available now as per https://github.com/actions/runner/issues/2619#issuecomment-1679003443 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 2488d8d..2676cf5 100644 --- a/action.yml +++ b/action.yml @@ -15,6 +15,6 @@ outputs: token: description: "GitHub installation access token" runs: - using: "node16" + using: "node20" main: "dist/main.cjs" post: "dist/post.cjs"