@@ -2074,15 +2074,12 @@ function run() {
2074
2074
// If not supplied then problem matchers will still be setup. Useful for self-hosted.
2075
2075
//
2076
2076
let versionSpec = core . getInput ( 'go-version' ) ;
2077
- // stable will be true unless false is the exact input
2078
- // since getting unstable versions should be explicit
2079
- let stable = ( core . getInput ( 'stable' ) || 'true' ) . toUpperCase ( ) === 'TRUE' ;
2080
- core . info ( `Setup go ${ stable ? 'stable' : '' } version spec ${ versionSpec } ` ) ;
2077
+ core . info ( `Setup go version spec ${ versionSpec } ` ) ;
2081
2078
if ( versionSpec ) {
2082
2079
let token = core . getInput ( 'token' ) ;
2083
2080
let auth = ! token || isGhes ( ) ? undefined : `token ${ token } ` ;
2084
2081
const checkLatest = core . getBooleanInput ( 'check-latest' ) ;
2085
- const installDir = yield installer . getGo ( versionSpec , stable , checkLatest , auth ) ;
2082
+ const installDir = yield installer . getGo ( versionSpec , checkLatest , auth ) ;
2086
2083
core . exportVariable ( 'GOROOT' , installDir ) ;
2087
2084
core . addPath ( path_1 . default . join ( installDir , 'bin' ) ) ;
2088
2085
core . info ( 'Added go to the path' ) ;
@@ -5718,7 +5715,7 @@ module.exports = bytesToUuid;
5718
5715
5719
5716
Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
5720
5717
exports . getArch = exports . getPlatform = void 0 ;
5721
- let os = __webpack_require__ ( 87 ) ;
5718
+ const os = __webpack_require__ ( 87 ) ;
5722
5719
function getPlatform ( ) {
5723
5720
// darwin and linux match already
5724
5721
// freebsd not supported yet but future proofed.
@@ -5890,13 +5887,13 @@ const semver = __importStar(__webpack_require__(280));
5890
5887
const httpm = __importStar ( __webpack_require__ ( 539 ) ) ;
5891
5888
const sys = __importStar ( __webpack_require__ ( 737 ) ) ;
5892
5889
const os_1 = __importDefault ( __webpack_require__ ( 87 ) ) ;
5893
- function getGo ( versionSpec , stable , checkLatest , auth ) {
5890
+ function getGo ( versionSpec , checkLatest , auth ) {
5894
5891
return __awaiter ( this , void 0 , void 0 , function * ( ) {
5895
5892
let osPlat = os_1 . default . platform ( ) ;
5896
5893
let osArch = os_1 . default . arch ( ) ;
5897
5894
if ( checkLatest ) {
5898
5895
core . info ( 'Attempting to resolve the latest version from the manifest...' ) ;
5899
- const resolvedVersion = yield resolveVersionFromManifest ( versionSpec , stable , auth ) ;
5896
+ const resolvedVersion = yield resolveVersionFromManifest ( versionSpec , true , auth ) ;
5900
5897
if ( resolvedVersion ) {
5901
5898
versionSpec = resolvedVersion ;
5902
5899
core . info ( `Resolved as '${ versionSpec } '` ) ;
@@ -5920,7 +5917,7 @@ function getGo(versionSpec, stable, checkLatest, auth) {
5920
5917
// Try download from internal distribution (popular versions only)
5921
5918
//
5922
5919
try {
5923
- info = yield getInfoFromManifest ( versionSpec , stable , auth ) ;
5920
+ info = yield getInfoFromManifest ( versionSpec , true , auth ) ;
5924
5921
if ( info ) {
5925
5922
downloadPath = yield installGoVersion ( info , auth ) ;
5926
5923
}
@@ -5943,7 +5940,7 @@ function getGo(versionSpec, stable, checkLatest, auth) {
5943
5940
// Download from storage.googleapis.com
5944
5941
//
5945
5942
if ( ! downloadPath ) {
5946
- info = yield getInfoFromDist ( versionSpec , stable ) ;
5943
+ info = yield getInfoFromDist ( versionSpec ) ;
5947
5944
if ( ! info ) {
5948
5945
throw new Error ( `Unable to find Go version '${ versionSpec } ' for platform ${ osPlat } and architecture ${ osArch } .` ) ;
5949
5946
}
@@ -6018,10 +6015,10 @@ function getInfoFromManifest(versionSpec, stable, auth) {
6018
6015
} ) ;
6019
6016
}
6020
6017
exports . getInfoFromManifest = getInfoFromManifest ;
6021
- function getInfoFromDist ( versionSpec , stable ) {
6018
+ function getInfoFromDist ( versionSpec ) {
6022
6019
return __awaiter ( this , void 0 , void 0 , function * ( ) {
6023
6020
let version ;
6024
- version = yield findMatch ( versionSpec , stable ) ;
6021
+ version = yield findMatch ( versionSpec ) ;
6025
6022
if ( ! version ) {
6026
6023
return null ;
6027
6024
}
@@ -6034,7 +6031,7 @@ function getInfoFromDist(versionSpec, stable) {
6034
6031
} ;
6035
6032
} ) ;
6036
6033
}
6037
- function findMatch ( versionSpec , stable ) {
6034
+ function findMatch ( versionSpec ) {
6038
6035
return __awaiter ( this , void 0 , void 0 , function * ( ) {
6039
6036
let archFilter = sys . getArch ( ) ;
6040
6037
let platFilter = sys . getPlatform ( ) ;
@@ -6049,15 +6046,8 @@ function findMatch(versionSpec, stable) {
6049
6046
for ( let i = 0 ; i < candidates . length ; i ++ ) {
6050
6047
let candidate = candidates [ i ] ;
6051
6048
let version = makeSemver ( candidate . version ) ;
6052
- // 1.13.0 is advertised as 1.13 preventing being able to match exactly 1.13.0
6053
- // since a semver of 1.13 would match latest 1.13
6054
- let parts = version . split ( '.' ) ;
6055
- if ( parts . length == 2 ) {
6056
- version = version + '.0' ;
6057
- }
6058
6049
core . debug ( `check ${ version } satisfies ${ versionSpec } ` ) ;
6059
- if ( semver . satisfies ( version , versionSpec ) &&
6060
- ( ! stable || candidate . stable === stable ) ) {
6050
+ if ( semver . satisfies ( version , versionSpec ) ) {
6061
6051
goFile = candidate . files . find ( file => {
6062
6052
core . debug ( `${ file . arch } ===${ archFilter } && ${ file . os } ===${ platFilter } ` ) ;
6063
6053
return file . arch === archFilter && file . os === platFilter ;
@@ -6093,19 +6083,25 @@ exports.getVersionsDist = getVersionsDist;
6093
6083
// Convert the go version syntax into semver for semver matching
6094
6084
// 1.13.1 => 1.13.1
6095
6085
// 1.13 => 1.13.0
6096
- // 1.10beta1 => 1.10.0-beta1 , 1.10rc1 => 1.10.0-rc1
6097
- // 1.8.5beta1 => 1.8.5-beta1 , 1.8.5rc1 => 1.8.5-rc1
6086
+ // 1.10beta1 => 1.10.0-beta.1 , 1.10rc1 => 1.10.0-rc.1
6087
+ // 1.8.5beta1 => 1.8.5-beta.1 , 1.8.5rc1 => 1.8.5-rc.1
6098
6088
function makeSemver ( version ) {
6089
+ var _a ;
6099
6090
version = version . replace ( 'go' , '' ) ;
6100
- version = version . replace ( 'beta' , '-beta' ) . replace ( 'rc' , '-rc' ) ;
6091
+ version = version . replace ( 'beta' , '-beta. ' ) . replace ( 'rc' , '-rc. ' ) ;
6101
6092
let parts = version . split ( '-' ) ;
6102
- let verPart = parts [ 0 ] ;
6103
- let prereleasePart = parts . length > 1 ? `-${ parts [ 1 ] } ` : '' ;
6104
- let verParts = verPart . split ( '.' ) ;
6105
- if ( verParts . length == 2 ) {
6106
- verPart += '.0' ;
6093
+ let semVersion = ( _a = semver . coerce ( parts [ 0 ] ) ) === null || _a === void 0 ? void 0 : _a . version ;
6094
+ if ( ! semVersion ) {
6095
+ throw new Error ( `The version: ${ version } can't be changed to SemVer notation` ) ;
6096
+ }
6097
+ if ( ! parts [ 1 ] ) {
6098
+ return semVersion ;
6099
+ }
6100
+ const fullVersion = semver . valid ( `${ semVersion } -${ parts [ 1 ] } ` ) ;
6101
+ if ( ! fullVersion ) {
6102
+ throw new Error ( `The version: ${ version } can't be changed to SemVer notation` ) ;
6107
6103
}
6108
- return ` ${ verPart } ${ prereleasePart } ` ;
6104
+ return fullVersion ;
6109
6105
}
6110
6106
exports . makeSemver = makeSemver ;
6111
6107
//# sourceMappingURL=installer.js.map
0 commit comments