From 5f2dbfc7ff415376f12416eb9121d8a4fcd232e5 Mon Sep 17 00:00:00 2001 From: Christopher Manouvrier Date: Sun, 4 Feb 2024 16:22:10 +1100 Subject: [PATCH] feat: Bump action to node20 --- action.yml | 2 +- package-lock.json | 4 ++-- tsconfig.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/action.yml b/action.yml index 4b64a8e..a0771a2 100644 --- a/action.yml +++ b/action.yml @@ -27,7 +27,7 @@ outputs: comment-created: description: 'Whether or not the comment was created on the pull request.' runs: - using: 'node16' + using: 'node20' main: 'dist/index.js' branding: icon: 'moon' diff --git a/package-lock.json b/package-lock.json index b5257f8..5c3683d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@moonrepo/run-report-action", - "version": "1.5.1", + "version": "1.5.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@moonrepo/run-report-action", - "version": "1.5.1", + "version": "1.5.2", "license": "MIT", "dependencies": { "@actions/core": "^1.10.1", diff --git a/tsconfig.json b/tsconfig.json index 2208b5d..f44184a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,7 @@ "extends": "tsconfig-moon/tsconfig.json", "compilerOptions": { "allowJs": true, - "module": "Node16", + "module": "NodeNext", "moduleResolution": "NodeNext", "noEmit": true, "verbatimModuleSyntax": false