File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 11import * as core from "@actions/core" ;
22
33import * as actionsUtil from "./actions-util" ;
4- import { getActionVersion , getTemporaryDirectory } from "./actions-util" ;
54import * as analyses from "./analyses" ;
65import { getGitHubVersion } from "./api-client" ;
76import { CodeQL , getCodeQL } from "./codeql" ;
@@ -93,10 +92,10 @@ async function run(startedAt: Date) {
9392 const logger = getActionsLogger ( ) ;
9493
9594 try {
96- initializeEnvironment ( getActionVersion ( ) ) ;
95+ initializeEnvironment ( actionsUtil . getActionVersion ( ) ) ;
9796
9897 const gitHubVersion = await getGitHubVersion ( ) ;
99- checkActionVersion ( getActionVersion ( ) , gitHubVersion ) ;
98+ checkActionVersion ( actionsUtil . getActionVersion ( ) , gitHubVersion ) ;
10099
101100 // Make inputs accessible in the `post` step.
102101 actionsUtil . persistInputs ( ) ;
@@ -105,7 +104,7 @@ async function run(startedAt: Date) {
105104 const features = initFeatures (
106105 gitHubVersion ,
107106 repositoryNwo ,
108- getTemporaryDirectory ( ) ,
107+ actionsUtil . getTemporaryDirectory ( ) ,
109108 logger ,
110109 ) ;
111110
You can’t perform that action at this time.
0 commit comments