From 4566f818f2da13eba76206e083468498e18fecdd Mon Sep 17 00:00:00 2001 From: Will Clarke Date: Thu, 27 Oct 2022 14:56:48 +0100 Subject: [PATCH] Update email check api url --- utils/checkInfo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/checkInfo.js b/utils/checkInfo.js index 28c61e6..4548923 100644 --- a/utils/checkInfo.js +++ b/utils/checkInfo.js @@ -3,7 +3,7 @@ const core = require('@actions/core'); async function checkEmail(email) { console.log(`Checking: ${email}`) - const url = `http://email-check.ext.talosbot.xyz/index.php?key=6lPyUV2dX8&email=${encodeURIComponent(email)}`; + const url = `https://api.is-a-good.dev/email-check?key=6lPyUV2dX8&email=${encodeURIComponent(email)}`; const options = { method: 'GET' };