import * as core from '@actions/core' import * as dependencyGraph from './dependency-graph' export async function run(): Promise { try { // Retrieve the dependency graph artifact and submit via Dependency Submission API await dependencyGraph.submitDependencyGraph() } catch (error) { core.setFailed(String(error)) if (error instanceof Error && error.stack) { core.info(error.stack) } } } run()