We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a12f33 commit 0dadf93Copy full SHA for 0dadf93
1 file changed
src/main.ts
@@ -53,7 +53,10 @@ actionsToolkit.run(
53
});
54
} else if (!(await toolkit.buildx.isAvailable()) || version) {
55
await core.group(`Download buildx from GitHub Releases`, async () => {
56
- toolPath = await toolkit.buildxInstall.download(version || 'latest', !inputs.cacheBinary);
+ toolPath = await toolkit.buildxInstall.download({
57
+ version: version || 'latest',
58
+ ghaNoCache: !inputs.cacheBinary
59
+ });
60
61
}
62
if (toolPath) {
0 commit comments