From afcf27419f201be70ef084bb5fd173a20641fa0d Mon Sep 17 00:00:00 2001 From: Pranas Ziaukas Date: Tue, 29 Nov 2022 11:06:35 +0200 Subject: [PATCH] deps: Upgrade from NodeJS v12 to v16. GitHub Actions has deprecated NodeJS 12 Actions, leaving the following annotation on jobs that use them. NodeJS 16 is supported, so upgrade the send-message Action to use that. > Node.js 12 actions are deprecated. For more information see: > https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. Fixes #70. --- send-message/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/send-message/action.yml b/send-message/action.yml index c604c6e..0abb612 100644 --- a/send-message/action.yml +++ b/send-message/action.yml @@ -27,5 +27,5 @@ inputs: description: 'The content of the message. Maximum message size of 10000 bytes.' required: true runs: - using: 'node12' + using: 'node16' main: '../dist/send-message/index.js'