Skip to content

Commit 54a83cd

Browse files
committed
Update module import path for changed @actions/[email protected] package structure
The module path usable with the 1.x series of the package caused build to fail: src/installer.ts:8:23 - error TS2307: Cannot find module '@actions/http-client/auth' or its corresponding type declarations.
1 parent d749ad2 commit 54a83cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/installer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import * as os from "os";
55
import * as path from "path";
66
import * as util from "util";
77
import * as httpm from "@actions/http-client";
8-
import * as auth from "@actions/http-client/auth";
8+
import * as auth from "@actions/http-client/lib/auth";
99
import * as semver from "semver";
1010

1111
if (!tempDirectory) {

0 commit comments

Comments
 (0)