Skip to content

Commit

Permalink
Fix ESLint problems
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikhr committed Jan 28, 2024
1 parent 14e1f91 commit 9e44b1c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/gh-actions-http-client/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const buildGhaHttpClient = require("./GhaHttpClient.js");
const buildGhaHttpClient = require("./GhaHttpClient");

/**
* @param {import("@actions/core")} core
Expand Down
6 changes: 4 additions & 2 deletions run/ms-idp-workflow-run-auth/action.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@ const httpClientModule = require("@actions/http-client");

const msalNodeModule = import("@azure/msal-node");

const { bindCoreHelpers } = require("../../lib/gh-actions-core-helpers");
const {
bindCoreHelpers,
} = require("../../lib/gh-actions-core-helpers/index.cjs");
const buildGhaHttpClient = require("../../lib/gh-actions-http-client");

const { saveStateEx: saveState } = bindCoreHelpers(ghaCore);
const { HttpClientError } = httpClientModule;
const { GhaHttpClient } = buildGhaHttpClient(ghaCore, httpClientModule);

const utils = require("./utils.js");
const utils = require("./utils");
const GhaMsalAccessTokenProviderModule = require("./GhaMsalAccessTokenProvider");
const GhaServicePrincipalUpdater = require("./GhaServicePrincipalUpdater");

Expand Down

0 comments on commit 9e44b1c

Please sign in to comment.