@@ -28,13 +28,13 @@ import {
2828 CODEQL_ACTION_DID_AUTOBUILD_GOLANG ,
2929} from "./shared-environment" ;
3030import { getTotalCacheSize , uploadTrapCaches } from "./trap-caching" ;
31- import * as upload_lib from "./upload-lib" ;
31+ import * as uploadLib from "./upload-lib" ;
3232import { UploadResult } from "./upload-lib" ;
3333import * as util from "./util" ;
3434import { checkForTimeout , wrapError } from "./util" ;
3535
3636interface AnalysisStatusReport
37- extends upload_lib . UploadStatusReport ,
37+ extends uploadLib . UploadStatusReport ,
3838 QueriesStatusReport { }
3939
4040interface FinishStatusReport
@@ -269,7 +269,7 @@ async function run() {
269269 core . setOutput ( "db-locations" , dbLocations ) ;
270270 const uploadInput = actionsUtil . getOptionalInput ( "upload" ) ;
271271 if ( runStats && actionsUtil . getUploadValue ( uploadInput ) === "always" ) {
272- uploadResult = await upload_lib . uploadFromActions (
272+ uploadResult = await uploadLib . uploadFromActions (
273273 outputDir ,
274274 actionsUtil . getRequiredInput ( "checkout_path" ) ,
275275 actionsUtil . getOptionalInput ( "category" ) ,
@@ -296,7 +296,7 @@ async function run() {
296296 uploadResult !== undefined &&
297297 actionsUtil . getRequiredInput ( "wait-for-processing" ) === "true"
298298 ) {
299- await upload_lib . waitForProcessing (
299+ await uploadLib . waitForProcessing (
300300 parseRepositoryNwo ( util . getRequiredEnvParam ( "GITHUB_REPOSITORY" ) ) ,
301301 uploadResult . sarifID ,
302302 getActionsLogger ( )
0 commit comments