File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import * as path from 'path'
5
5
import * as tc from '@actions/tool-cache'
6
6
7
7
const csVersion = '2.1.0-M5'
8
- const scalaCLIVersion = '0.1.11 '
8
+ const scalaCLIVersion = '0.1.12 '
9
9
const coursierVersionSpec = csVersion
10
10
11
11
async function execOutput ( cmd : string , ...args : string [ ] ) : Promise < string > {
@@ -115,7 +115,10 @@ async function run(): Promise<void> {
115
115
core . exportVariable ( 'COURSIER_BIN_DIR' , coursierBinDir )
116
116
core . addPath ( coursierBinDir )
117
117
await cs ( 'install' , '--contrib' , ...apps )
118
- core . setOutput ( 'scala-cli-version' , await execOutput ( 'scala-cli' , 'version' ) )
118
+ core . setOutput (
119
+ 'scala-cli-version' ,
120
+ await execOutput ( 'scala-cli' , 'version' , '--cli-version' ) ,
121
+ )
119
122
}
120
123
} )
121
124
} catch ( error : any ) {
You can’t perform that action at this time.
0 commit comments