From 16f1fd9bbe3cd16a84c12472876fccf9f43ff50b Mon Sep 17 00:00:00 2001 From: Gregor Martynus <39992+gr2m@users.noreply.github.com> Date: Tue, 22 Aug 2023 10:11:09 -0700 Subject: [PATCH] feat: use `node20` as runner 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"