Skip to content

Commit 0dadf93

Browse files
committed
update buildxInstall.download call since v0.77.0
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
1 parent 1a12f33 commit 0dadf93

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/main.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,10 @@ actionsToolkit.run(
5353
});
5454
} else if (!(await toolkit.buildx.isAvailable()) || version) {
5555
await core.group(`Download buildx from GitHub Releases`, async () => {
56-
toolPath = await toolkit.buildxInstall.download(version || 'latest', !inputs.cacheBinary);
56+
toolPath = await toolkit.buildxInstall.download({
57+
version: version || 'latest',
58+
ghaNoCache: !inputs.cacheBinary
59+
});
5760
});
5861
}
5962
if (toolPath) {

0 commit comments

Comments
 (0)