File tree 2 files changed +3
-8
lines changed
2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -7,19 +7,15 @@ branding:
7
7
inputs :
8
8
ubuntu-graphviz-version :
9
9
description : |-
10
- Graphviz version on Ubuntu.
10
+ graphviz version on Ubuntu.
11
11
required : false
12
12
ubuntu-libgraphvizdev-version :
13
13
description : |-
14
14
libgraphviz-dev version on Ubuntu.
15
15
required : false
16
- macos-graphviz-version :
17
- description : |-
18
- Graphviz version on macOS.
19
- required : false
20
16
windows-graphviz-version :
21
17
description : |-
22
- Graphviz version on Windows.
18
+ graphviz version on Windows.
23
19
required : false
24
20
25
21
runs :
Original file line number Diff line number Diff line change @@ -23,11 +23,10 @@ class GraphvizInstaller {
23
23
}
24
24
}
25
25
async brewInstall ( ) {
26
- const graphvizVersion = ( 0 , core_1 . getInput ) ( 'macos-graphviz-version' ) ;
27
26
await ( 0 , exec_1 . exec ) ( 'brew' , [ 'update' ] ) ;
28
27
await ( 0 , exec_1 . exec ) ( 'brew' , [
29
28
'install' ,
30
- graphvizVersion ? `graphviz@ ${ graphvizVersion } ` : 'graphviz' ,
29
+ 'graphviz' ,
31
30
] ) ;
32
31
}
33
32
async getAptInstall ( ) {
You can’t perform that action at this time.
0 commit comments