From ad437ba2e77b8d6e5f284fbbebe58f78cad86c9b Mon Sep 17 00:00:00 2001 From: chen quan Date: Sun, 16 Oct 2022 23:08:54 +0800 Subject: [PATCH] chore: upgrade node.js version Node 12 has been out of support since April 2022, as a result we have started the deprecation process of Node 12 for GitHub Actions. We plan to migrate all actions to run on Node16 by Summer 2023. We will monitor the progress of the migration and listen to the community for how things are going before we define a final date. To raise awareness of the upcoming change, we are adding a warning into workflows which contain Actions running on Node 12. This will come into effect starting on September 27th. https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 54b898f..785c1d6 100644 --- a/action.yml +++ b/action.yml @@ -14,5 +14,5 @@ inputs: CUSTOM_BOT_NOTE: description: 'Custom bot note message.' runs: - using: 'node12' + using: 'node16' main: 'dist/index.js'