This commit is contained in:
RaeCheol Park 2026-08-20 10:22:52 +09:00 committed by GitHub
commit 6a935c3b74
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 67 additions and 1 deletions

3
dist/setup/index.js vendored
View file

@ -100684,6 +100684,9 @@ function resolveVersionInput() {
}
version = parseGoVersionFile(versionFilePath);
}
if (!version && external_fs_default().existsSync('go.mod')) {
version = parseGoVersionFile('go.mod');
}
return version;
}
function setGoToolchain() {