Skip to content

Commit

Permalink
fix(deps): update dependency https-proxy-agent to v6 (#492)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed May 13, 2023
1 parent b462eb7 commit f48cfc5
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 22 deletions.
38 changes: 19 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"@octokit/plugin-paginate-rest": "^6.0.0",
"@octokit/plugin-rest-endpoint-methods": "^7.0.0",
"@octokit/types": "^9.0.0",
"https-proxy-agent": "^5.0.1"
"https-proxy-agent": "^6.0.0"
},
"devDependencies": {
"@pika/pack": "^0.3.7",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export { RestEndpointMethodTypes } from "@octokit/plugin-rest-endpoint-methods";

import { VERSION } from "./version";
import { OctokitOptions } from "@octokit/core/dist-types/types";
const HttpsProxyAgent = require("https-proxy-agent");
import { HttpsProxyAgent } from "https-proxy-agent";

const DEFAULTS = {
authStrategy: createActionAuth,
Expand Down
2 changes: 1 addition & 1 deletion test/smoke.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import fetchMock from "fetch-mock";
import { RequestOptions } from "https";
const HttpsProxyAgent = require("https-proxy-agent");
import { HttpsProxyAgent } from "https-proxy-agent";

import { Octokit } from "../src";

Expand Down

0 comments on commit f48cfc5

Please sign in to comment.