Update email check api url

This commit is contained in:
Will Clarke
2022-10-27 14:56:48 +01:00
committed by GitHub
parent d55b640aec
commit 4566f818f2
+1 -1
View File
@@ -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'
};