Skip to content

Commit a9d6f9b

Browse files
committed
Rename upload_lib import to uploadLib
1 parent 0bb7eca commit a9d6f9b

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

lib/analyze-action.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/analyze-action.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/analyze-action.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ import {
2828
CODEQL_ACTION_DID_AUTOBUILD_GOLANG,
2929
} from "./shared-environment";
3030
import { getTotalCacheSize, uploadTrapCaches } from "./trap-caching";
31-
import * as upload_lib from "./upload-lib";
31+
import * as uploadLib from "./upload-lib";
3232
import { UploadResult } from "./upload-lib";
3333
import * as util from "./util";
3434
import { checkForTimeout, wrapError } from "./util";
3535

3636
interface AnalysisStatusReport
37-
extends upload_lib.UploadStatusReport,
37+
extends uploadLib.UploadStatusReport,
3838
QueriesStatusReport {}
3939

4040
interface 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

Comments
 (0)