From 647edc00349559756bd2ac86c4600b73e6912b2d Mon Sep 17 00:00:00 2001 From: Benjamin Levesque <14175665+benjlevesque@users.noreply.github.com> Date: Thu, 13 Oct 2022 17:13:00 +0200 Subject: [PATCH 1/2] chore: upgrade to node 16 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 7fabd810..f87287e9 100644 --- a/action.yml +++ b/action.yml @@ -10,7 +10,7 @@ inputs: description: 'A path for the auto-assign configuration' default: '.github/auto_assign.yml' runs: - using: 'node12' + using: 'node16' main: 'dist/index.js' branding: icon: 'user-plus' From 77c2f4d80dd434358ac34c0c156287674680743c Mon Sep 17 00:00:00 2001 From: Benjamin Levesque <14175665+benjlevesque@users.noreply.github.com> Date: Thu, 13 Oct 2022 17:16:48 +0200 Subject: [PATCH 2/2] upgrade workflow --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 62836fc7..1b394f5f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,10 +8,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: setup node 12.x + - name: setup node 16.x uses: actions/setup-node@v3 with: - node-version: '12.x' + node-version: '16.x' - name: install run: npm install