We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4c70561 + 58584e3 commit 51cc1b5Copy full SHA for 51cc1b5
2 files changed
src/buildx/history.ts
@@ -70,6 +70,10 @@ export class History {
70
}
71
72
public async export(opts: ExportOpts): Promise<ExportResponse> {
73
+ if (!(await this.buildx.versionSatisfies('>=0.23.0'))) {
74
+ throw new Error('Buildx >= 0.23.0 is required to export a build record');
75
+ }
76
+
77
let builderName: string = '';
78
let nodeName: string = '';
79
const refs: Array<string> = [];
src/types/buildx/history.ts
@@ -107,7 +107,6 @@ export interface ExportOpts {
107
refs: Array<string>;
108
noSummaries?: boolean;
109
image?: string;
110
- useContainer?: boolean;
111
112
113
export interface ExportResponse {
0 commit comments