File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -66841,10 +66841,10 @@ function run() {
6684166841 core.info(`resolvedVersionInput[0] is ${resolvedVersionInput[0]}`);
6684266842 const checkLatest = core.getBooleanInput('check-latest');
6684366843 if (Array.isArray(resolvedVersionInput)) {
66844- versions = resolveVersionInput ;
66844+ versions = resolvedVersionInput ;
6684566845 }
6684666846 else {
66847- versions = [resolveVersionInput ];
66847+ versions = [resolvedVersionInput ];
6684866848 }
6684966849 core.info(`versions is ${versions}`);
6685066850 core.info(`versions.length is ${versions.length}`);
Original file line number Diff line number Diff line change @@ -83,9 +83,9 @@ async function run() {
8383 const checkLatest = core . getBooleanInput ( 'check-latest' ) ;
8484
8585 if ( Array . isArray ( resolvedVersionInput ) ) {
86- versions = ( resolveVersionInput as unknown ) as string [ ] ;
86+ versions = resolvedVersionInput as string [ ] ;
8787 } else {
88- versions = [ ( resolveVersionInput as unknown ) as string ] ;
88+ versions = [ resolvedVersionInput as string ] ;
8989 }
9090
9191 core . info ( `versions is ${ versions } ` ) ;
You can’t perform that action at this time.
0 commit comments