@@ -53,7 +53,7 @@ async function run(): Promise<void> {
5353 } ) ;
5454 } ) ;
5555
56- context . setOutput ( 'name' , inputs . name ) ;
56+ core . setOutput ( 'name' , inputs . name ) ;
5757 stateHelper . setBuilderName ( inputs . name ) ;
5858
5959 const credsdir = path . join ( dockerConfigHome , 'buildx' , 'creds' , inputs . name ) ;
@@ -89,12 +89,12 @@ async function run(): Promise<void> {
8989 const builder = await buildx . inspect ( inputs . name , standalone ) ;
9090 const firstNode = builder . nodes [ 0 ] ;
9191 core . info ( JSON . stringify ( builder , undefined , 2 ) ) ;
92- context . setOutput ( 'driver' , builder . driver ) ;
93- context . setOutput ( 'platforms' , firstNode . platforms ) ;
94- context . setOutput ( 'nodes' , JSON . stringify ( builder . nodes , undefined , 2 ) ) ;
95- context . setOutput ( 'endpoint' , firstNode . endpoint ) ; // TODO: deprecated, to be removed in a later version
96- context . setOutput ( 'status' , firstNode . status ) ; // TODO: deprecated, to be removed in a later version
97- context . setOutput ( 'flags' , firstNode [ 'buildkitd-flags' ] ) ; // TODO: deprecated, to be removed in a later version
92+ core . setOutput ( 'driver' , builder . driver ) ;
93+ core . setOutput ( 'platforms' , firstNode . platforms ) ;
94+ core . setOutput ( 'nodes' , JSON . stringify ( builder . nodes , undefined , 2 ) ) ;
95+ core . setOutput ( 'endpoint' , firstNode . endpoint ) ; // TODO: deprecated, to be removed in a later version
96+ core . setOutput ( 'status' , firstNode . status ) ; // TODO: deprecated, to be removed in a later version
97+ core . setOutput ( 'flags' , firstNode [ 'buildkitd-flags' ] ) ; // TODO: deprecated, to be removed in a later version
9898 core . endGroup ( ) ;
9999
100100 if ( ! standalone && builder . driver == 'docker-container' ) {
0 commit comments