From 961c0bdae7ec313df6d33fa7cff3425d3945bbe1 Mon Sep 17 00:00:00 2001 From: Hank Date: Mon, 17 Oct 2022 12:39:35 +0200 Subject: [PATCH 1/2] Update action.yml to use node 16 --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 89e9d57..dca56f0 100644 --- a/action.yml +++ b/action.yml @@ -9,8 +9,8 @@ inputs: description: 'Enable caching' required: false runs: - using: 'node12' + using: 'node16' main: 'dist/index.js' branding: icon: 'package' - color: 'yellow' \ No newline at end of file + color: 'yellow' From 8510090422cb2efe61e0cdfa5fdb500260bcf1f2 Mon Sep 17 00:00:00 2001 From: Hank Date: Mon, 17 Oct 2022 12:41:07 +0200 Subject: [PATCH 2/2] Update workflow to use node 16 --- .github/workflows/workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index e4264b9..18d7692 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -22,7 +22,7 @@ jobs: - name: Set Node.JS uses: actions/setup-node@master with: - node-version: 12.x + node-version: 16 - name: npm install run: npm install