From 282acdc15cc12e45837e8c8ffd899ffc62f6ad91 Mon Sep 17 00:00:00 2001 From: Luke Bearden Date: Wed, 21 Dec 2022 11:28:18 -0500 Subject: [PATCH] changed to use node16, node18 broke CI --- check-imports/action.yml | 2 +- coverage-reporter/action.yml | 2 +- publish-beta/action.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/check-imports/action.yml b/check-imports/action.yml index 9de5a62..6489bb0 100644 --- a/check-imports/action.yml +++ b/check-imports/action.yml @@ -1,6 +1,6 @@ name: Check Imports description: Ensure imported packages are allowed for use. runs: - using: node18 + using: node16 pre: '../setup.mjs' main: ../build/check-imports/index.js diff --git a/coverage-reporter/action.yml b/coverage-reporter/action.yml index 54bacd5..fa07967 100644 --- a/coverage-reporter/action.yml +++ b/coverage-reporter/action.yml @@ -27,6 +27,6 @@ inputs: description: Title to add to the comment required: false runs: - using: node18 + using: node16 pre: '../setup.mjs' main: ../build/coverage-reporter/index.js diff --git a/publish-beta/action.yml b/publish-beta/action.yml index d7f9485..9ae6cec 100644 --- a/publish-beta/action.yml +++ b/publish-beta/action.yml @@ -9,6 +9,6 @@ inputs: description: Publish beta command to run required: true runs: - using: node18 + using: node16 pre: '../setup.mjs' main: ../build/publish-beta/index.js