File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -66841,10 +66841,10 @@ function run() {
66841
66841
core.info(`resolvedVersionInput[0] is ${resolvedVersionInput[0]}`);
66842
66842
const checkLatest = core.getBooleanInput('check-latest');
66843
66843
if (Array.isArray(resolvedVersionInput)) {
66844
- versions = resolveVersionInput ;
66844
+ versions = resolvedVersionInput ;
66845
66845
}
66846
66846
else {
66847
- versions = [resolveVersionInput ];
66847
+ versions = [resolvedVersionInput ];
66848
66848
}
66849
66849
core.info(`versions is ${versions}`);
66850
66850
core.info(`versions.length is ${versions.length}`);
Original file line number Diff line number Diff line change @@ -83,9 +83,9 @@ async function run() {
83
83
const checkLatest = core . getBooleanInput ( 'check-latest' ) ;
84
84
85
85
if ( Array . isArray ( resolvedVersionInput ) ) {
86
- versions = ( resolveVersionInput as unknown ) as string [ ] ;
86
+ versions = resolvedVersionInput as string [ ] ;
87
87
} else {
88
- versions = [ ( resolveVersionInput as unknown ) as string ] ;
88
+ versions = [ resolvedVersionInput as string ] ;
89
89
}
90
90
91
91
core . info ( `versions is ${ versions } ` ) ;
You can’t perform that action at this time.
0 commit comments