From 12625f18904386e6d97cbab5a44301b8e6420fc3 Mon Sep 17 00:00:00 2001 From: webbrain-one <295484252+webbrain-one@users.noreply.github.com> Date: Sat, 15 Aug 2026 06:16:07 +0300 Subject: [PATCH] Update action to use Node 16 by default Replace deprecated `node12` with `node16` in `action.yml` to align with GitHub Actions defaults and remove deprecation warnings. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 48572b2..46aff79 100644 --- a/action.yml +++ b/action.yml @@ -8,5 +8,5 @@ inputs: description: 'A path for config file' default: '.github/auto-label.json' runs: - using: 'node12' + using: 'node16' main: 'dist/entrypoint.js'