File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import {Inputs as BuildxInputs} from '@docker/actions-toolkit/lib/buildx/inputs'
55import { Context } from '@docker/actions-toolkit/lib/context' ;
66import { Docker } from '@docker/actions-toolkit/lib/docker/docker' ;
77import { Exec } from '@docker/actions-toolkit/lib/exec' ;
8+ import { GitHub } from '@docker/actions-toolkit/lib/github' ;
89import { Toolkit } from '@docker/actions-toolkit/lib/toolkit' ;
910
1011import * as context from './context' ;
@@ -16,6 +17,14 @@ actionsToolkit.run(
1617 const inputs : context . Inputs = await context . getInputs ( ) ;
1718 const toolkit = new Toolkit ( ) ;
1819
20+ await core . group ( `GitHub Actions runtime token ACs` , async ( ) => {
21+ try {
22+ await GitHub . printActionsRuntimeTokenACs ( ) ;
23+ } catch ( e ) {
24+ core . warning ( e . message ) ;
25+ }
26+ } ) ;
27+
1928 await core . group ( `Docker info` , async ( ) => {
2029 try {
2130 await Docker . printVersion ( ) ;
You can’t perform that action at this time.
0 commit comments