From f76f3aadf7fc78714d48930df15ebf47b3352125 Mon Sep 17 00:00:00 2001 From: Shijun Wang Date: Fri, 28 Oct 2022 14:18:14 +0300 Subject: [PATCH] Upgrade to node 16 --- action.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/action.yml b/action.yml index 16aaba6..34136af 100644 --- a/action.yml +++ b/action.yml @@ -1,16 +1,16 @@ -name: 'webfactory/ssh-agent' -description: 'Run `ssh-agent` and load an SSH key to access other private repositories' +name: "webfactory/ssh-agent" +description: "Run `ssh-agent` and load an SSH key to access other private repositories" inputs: ssh-private-key: - description: 'Private SSH key to register in the SSH agent' + description: "Private SSH key to register in the SSH agent" required: true ssh-auth-sock: - description: 'Where to place the SSH Agent auth socket' + description: "Where to place the SSH Agent auth socket" runs: - using: 'node12' - main: 'dist/index.js' - post: 'dist/cleanup.js' - post-if: 'always()' + using: "node16" + main: "dist/index.js" + post: "dist/cleanup.js" + post-if: "always()" branding: icon: loader - color: 'yellow' + color: "yellow"