From b9c7365bbbed84c91861461176dfea548ecf7a24 Mon Sep 17 00:00:00 2001 From: daz Date: Thu, 21 Sep 2023 10:31:51 -0600 Subject: [PATCH] Use github.getOctokit() for compat with GitHub Enterprise --- src/dependency-graph.ts | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/dependency-graph.ts b/src/dependency-graph.ts index a71ae35..a65eb4c 100644 --- a/src/dependency-graph.ts +++ b/src/dependency-graph.ts @@ -3,7 +3,7 @@ import * as artifact from '@actions/artifact' import * as github from '@actions/github' import * as glob from '@actions/glob' import * as toolCache from '@actions/tool-cache' -import {Octokit} from '@octokit/rest' +import {GitHub} from '@actions/github/lib/utils' import * as path from 'path' import fs from 'fs' @@ -63,7 +63,7 @@ async function downloadAndSubmitDependencyGraphs(): Promise { } async function submitDependencyGraphs(dependencyGraphFiles: string[]): Promise { - const octokit: Octokit = getOctokit() + const octokit = getOctokit() for (const jsonFile of dependencyGraphFiles) { const jsonContent = fs.readFileSync(jsonFile, 'utf8') @@ -86,7 +86,7 @@ async function retrieveDependencyGraphs(workspaceDirectory: string): Promise { - const octokit: Octokit = getOctokit() + const octokit = getOctokit() // Find the workflow run artifacts named "dependency-graph" const artifacts = await octokit.rest.actions.listWorkflowRunArtifacts({ @@ -136,10 +136,8 @@ async function findDependencyGraphFiles(dir: string): Promise { return graphFiles } -function getOctokit(): Octokit { - return new Octokit({ - auth: getGithubToken() - }) +function getOctokit(): InstanceType { + return github.getOctokit(getGithubToken()) } function getGithubToken(): string {