This commit is contained in:
RaeCheol Park 2026-06-23 10:08:49 +00:00 committed by GitHub
commit afba3036e7
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

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