From ea5fd168718723172f07aa5d3cd1faa9416663e2 Mon Sep 17 00:00:00 2001 From: Luca Tironi Date: Wed, 27 Aug 2025 13:20:49 +0200 Subject: [PATCH] Update unity release urls --- src/setup.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/setup.js b/src/setup.js index 34741aa..b14316c 100644 --- a/src/setup.js +++ b/src/setup.js @@ -152,11 +152,11 @@ async function findVersionChangeset(unityVersion) { try { let versionPageUrl; if (unityVersion.includes('a')) { - versionPageUrl = 'https://unity3d.com/unity/alpha/' + unityVersion; + versionPageUrl = 'https://unity.com/releases/editor/alpha/' + unityVersion; } else if (unityVersion.includes('b')) { - versionPageUrl = 'https://unity3d.com/unity/beta/' + unityVersion; + versionPageUrl = 'https://unity.com/releases/editor/beta/' + unityVersion; } else if (unityVersion.includes('f')) { - versionPageUrl = 'https://unity3d.com/unity/whats-new/' + unityVersion.match(/[.0-9]+/)[0]; + versionPageUrl = 'https://unity.com/releases/editor/whats-new/' + unityVersion.match(/[.0-9]+/)[0]; } const pagePath = await tc.downloadTool(versionPageUrl); // support retry const pageText = fs.readFileSync(pagePath, 'utf8');