From 29870b07ec1f7d538fad01d691c866aa7bb21759 Mon Sep 17 00:00:00 2001 From: daz Date: Sat, 23 Dec 2023 19:03:13 -0700 Subject: [PATCH] Await --- src/dependency-graph.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dependency-graph.ts b/src/dependency-graph.ts index 67d4054a..239f971a 100644 --- a/src/dependency-graph.ts +++ b/src/dependency-graph.ts @@ -66,7 +66,7 @@ async function uploadDependencyGraphs(): Promise { core.info(`Uploading dependency graph files: ${relativeGraphFiles}`) const artifactClient = new DefaultArtifactClient() - artifactClient.uploadArtifact(DEPENDENCY_GRAPH_ARTIFACT, graphFiles, workspaceDirectory, { + await artifactClient.uploadArtifact(DEPENDENCY_GRAPH_ARTIFACT, graphFiles, workspaceDirectory, { retentionDays: getArtifactRetentionDays() })