2020-08-16 15:18:08 +00:00
|
|
|
import * as core from '@actions/core';
|
2021-12-27 23:49:32 +00:00
|
|
|
import * as handlebars from 'handlebars';
|
2024-04-26 09:20:49 +00:00
|
|
|
|
|
|
|
import {Build} from '@docker/actions-toolkit/lib/buildx/build';
|
2023-02-20 10:11:15 +00:00
|
|
|
import {Context} from '@docker/actions-toolkit/lib/context';
|
|
|
|
import {GitHub} from '@docker/actions-toolkit/lib/github';
|
|
|
|
import {Toolkit} from '@docker/actions-toolkit/lib/toolkit';
|
|
|
|
import {Util} from '@docker/actions-toolkit/lib/util';
|
2020-10-21 00:46:41 +00:00
|
|
|
|
2020-08-16 15:18:08 +00:00
|
|
|
export interface Inputs {
|
2022-01-31 10:47:45 +00:00
|
|
|
addHosts: string[];
|
2021-04-06 11:54:58 +00:00
|
|
|
allow: string[];
|
2023-10-24 05:23:44 +00:00
|
|
|
annotations: string[];
|
2023-01-11 11:12:09 +00:00
|
|
|
attests: string[];
|
2021-04-06 11:54:58 +00:00
|
|
|
buildArgs: string[];
|
2022-03-14 19:09:10 +00:00
|
|
|
buildContexts: string[];
|
2021-04-06 11:54:58 +00:00
|
|
|
builder: string;
|
|
|
|
cacheFrom: string[];
|
|
|
|
cacheTo: string[];
|
2021-11-16 06:19:27 +00:00
|
|
|
cgroupParent: string;
|
2020-08-16 15:18:08 +00:00
|
|
|
context: string;
|
|
|
|
file: string;
|
|
|
|
labels: string[];
|
2021-04-06 11:54:58 +00:00
|
|
|
load: boolean;
|
2021-04-06 12:49:15 +00:00
|
|
|
network: string;
|
2020-08-16 15:18:08 +00:00
|
|
|
noCache: boolean;
|
2022-07-18 15:24:11 +00:00
|
|
|
noCacheFilters: string[];
|
2021-04-06 11:54:58 +00:00
|
|
|
outputs: string[];
|
2020-08-17 00:32:27 +00:00
|
|
|
platforms: string[];
|
2023-01-11 11:12:09 +00:00
|
|
|
provenance: string;
|
2021-04-06 11:54:58 +00:00
|
|
|
pull: boolean;
|
2020-08-16 15:18:08 +00:00
|
|
|
push: boolean;
|
2023-01-11 11:12:09 +00:00
|
|
|
sbom: string;
|
2020-09-02 08:07:11 +00:00
|
|
|
secrets: string[];
|
2023-09-26 14:34:10 +00:00
|
|
|
secretEnvs: string[];
|
2021-02-15 09:08:19 +00:00
|
|
|
secretFiles: string[];
|
2021-11-16 06:19:27 +00:00
|
|
|
shmSize: string;
|
2020-09-10 23:23:49 +00:00
|
|
|
ssh: string[];
|
2021-04-06 11:54:58 +00:00
|
|
|
tags: string[];
|
|
|
|
target: string;
|
2021-11-16 06:19:27 +00:00
|
|
|
ulimit: string[];
|
2021-04-06 11:54:58 +00:00
|
|
|
githubToken: string;
|
2020-08-16 15:18:08 +00:00
|
|
|
}
|
|
|
|
|
2023-04-16 23:32:21 +00:00
|
|
|
export async function getInputs(): Promise<Inputs> {
|
2020-08-16 15:18:08 +00:00
|
|
|
return {
|
2023-02-20 10:11:15 +00:00
|
|
|
addHosts: Util.getInputList('add-hosts'),
|
|
|
|
allow: Util.getInputList('allow'),
|
2023-10-24 05:23:44 +00:00
|
|
|
annotations: Util.getInputList('annotations', {ignoreComma: true}),
|
2023-02-20 10:11:15 +00:00
|
|
|
attests: Util.getInputList('attests', {ignoreComma: true}),
|
|
|
|
buildArgs: Util.getInputList('build-args', {ignoreComma: true}),
|
|
|
|
buildContexts: Util.getInputList('build-contexts', {ignoreComma: true}),
|
2021-04-06 11:54:58 +00:00
|
|
|
builder: core.getInput('builder'),
|
2023-02-20 10:11:15 +00:00
|
|
|
cacheFrom: Util.getInputList('cache-from', {ignoreComma: true}),
|
|
|
|
cacheTo: Util.getInputList('cache-to', {ignoreComma: true}),
|
2021-11-16 06:19:27 +00:00
|
|
|
cgroupParent: core.getInput('cgroup-parent'),
|
2023-02-20 10:11:15 +00:00
|
|
|
context: core.getInput('context') || Context.gitContext(),
|
2020-12-18 15:05:47 +00:00
|
|
|
file: core.getInput('file'),
|
2023-02-20 10:11:15 +00:00
|
|
|
labels: Util.getInputList('labels', {ignoreComma: true}),
|
2021-06-22 15:25:52 +00:00
|
|
|
load: core.getBooleanInput('load'),
|
2021-04-06 12:49:15 +00:00
|
|
|
network: core.getInput('network'),
|
2021-06-22 15:25:52 +00:00
|
|
|
noCache: core.getBooleanInput('no-cache'),
|
2023-02-20 10:11:15 +00:00
|
|
|
noCacheFilters: Util.getInputList('no-cache-filters'),
|
2024-03-06 14:25:57 +00:00
|
|
|
outputs: Util.getInputList('outputs', {ignoreComma: true, quote: false}),
|
2023-02-20 10:11:15 +00:00
|
|
|
platforms: Util.getInputList('platforms'),
|
2024-04-26 09:20:49 +00:00
|
|
|
provenance: Build.getProvenanceInput('provenance'),
|
2021-06-22 15:25:52 +00:00
|
|
|
pull: core.getBooleanInput('pull'),
|
|
|
|
push: core.getBooleanInput('push'),
|
2023-01-11 11:12:09 +00:00
|
|
|
sbom: core.getInput('sbom'),
|
2023-02-20 10:11:15 +00:00
|
|
|
secrets: Util.getInputList('secrets', {ignoreComma: true}),
|
2023-09-26 14:34:10 +00:00
|
|
|
secretEnvs: Util.getInputList('secret-envs'),
|
2023-02-20 10:11:15 +00:00
|
|
|
secretFiles: Util.getInputList('secret-files', {ignoreComma: true}),
|
2021-11-16 06:19:27 +00:00
|
|
|
shmSize: core.getInput('shm-size'),
|
2023-02-20 10:11:15 +00:00
|
|
|
ssh: Util.getInputList('ssh'),
|
|
|
|
tags: Util.getInputList('tags'),
|
2021-04-06 11:54:58 +00:00
|
|
|
target: core.getInput('target'),
|
2023-02-20 10:11:15 +00:00
|
|
|
ulimit: Util.getInputList('ulimit', {ignoreComma: true}),
|
2021-04-06 11:54:58 +00:00
|
|
|
githubToken: core.getInput('github-token')
|
2020-08-16 15:18:08 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2023-02-20 10:11:15 +00:00
|
|
|
export async function getArgs(inputs: Inputs, toolkit: Toolkit): Promise<Array<string>> {
|
|
|
|
const context = handlebars.compile(inputs.context)({
|
|
|
|
defaultContext: Context.gitContext()
|
|
|
|
});
|
2022-03-15 20:59:52 +00:00
|
|
|
// prettier-ignore
|
|
|
|
return [
|
2023-02-20 10:11:15 +00:00
|
|
|
...await getBuildArgs(inputs, context, toolkit),
|
|
|
|
...await getCommonArgs(inputs, toolkit),
|
2022-08-03 12:38:56 +00:00
|
|
|
context
|
2022-03-15 20:59:52 +00:00
|
|
|
];
|
2020-08-16 15:18:08 +00:00
|
|
|
}
|
|
|
|
|
2023-02-20 10:11:15 +00:00
|
|
|
async function getBuildArgs(inputs: Inputs, context: string, toolkit: Toolkit): Promise<Array<string>> {
|
2022-03-15 20:59:52 +00:00
|
|
|
const args: Array<string> = ['build'];
|
2023-02-20 10:11:15 +00:00
|
|
|
await Util.asyncForEach(inputs.addHosts, async addHost => {
|
2022-01-31 10:47:45 +00:00
|
|
|
args.push('--add-host', addHost);
|
|
|
|
});
|
2021-11-16 04:19:44 +00:00
|
|
|
if (inputs.allow.length > 0) {
|
|
|
|
args.push('--allow', inputs.allow.join(','));
|
|
|
|
}
|
2023-10-24 05:23:44 +00:00
|
|
|
if (await toolkit.buildx.versionSatisfies('>=0.12.0')) {
|
|
|
|
await Util.asyncForEach(inputs.annotations, async annotation => {
|
|
|
|
args.push('--annotation', annotation);
|
|
|
|
});
|
2023-12-01 12:57:05 +00:00
|
|
|
} else if (inputs.annotations.length > 0) {
|
|
|
|
core.warning("Annotations are only supported by buildx >= 0.12.0; the input 'annotations' is ignored.");
|
2023-10-24 05:23:44 +00:00
|
|
|
}
|
2023-02-20 10:11:15 +00:00
|
|
|
await Util.asyncForEach(inputs.buildArgs, async buildArg => {
|
2020-08-16 15:18:08 +00:00
|
|
|
args.push('--build-arg', buildArg);
|
|
|
|
});
|
2023-02-20 10:11:15 +00:00
|
|
|
if (await toolkit.buildx.versionSatisfies('>=0.8.0')) {
|
|
|
|
await Util.asyncForEach(inputs.buildContexts, async buildContext => {
|
2022-03-14 19:09:10 +00:00
|
|
|
args.push('--build-context', buildContext);
|
|
|
|
});
|
2023-12-01 12:57:05 +00:00
|
|
|
} else if (inputs.buildContexts.length > 0) {
|
|
|
|
core.warning("Build contexts are only supported by buildx >= 0.8.0; the input 'build-contexts' is ignored.");
|
2022-03-14 19:09:10 +00:00
|
|
|
}
|
2023-02-20 10:11:15 +00:00
|
|
|
await Util.asyncForEach(inputs.cacheFrom, async cacheFrom => {
|
2021-11-16 04:19:44 +00:00
|
|
|
args.push('--cache-from', cacheFrom);
|
2020-08-16 15:18:08 +00:00
|
|
|
});
|
2023-02-20 10:11:15 +00:00
|
|
|
await Util.asyncForEach(inputs.cacheTo, async cacheTo => {
|
2021-11-16 04:19:44 +00:00
|
|
|
args.push('--cache-to', cacheTo);
|
2020-08-16 15:18:08 +00:00
|
|
|
});
|
2021-11-16 06:19:27 +00:00
|
|
|
if (inputs.cgroupParent) {
|
|
|
|
args.push('--cgroup-parent', inputs.cgroupParent);
|
|
|
|
}
|
2023-09-26 14:34:10 +00:00
|
|
|
await Util.asyncForEach(inputs.secretEnvs, async secretEnv => {
|
|
|
|
try {
|
2024-04-26 09:20:49 +00:00
|
|
|
args.push('--secret', Build.resolveSecretEnv(secretEnv));
|
2023-09-26 14:34:10 +00:00
|
|
|
} catch (err) {
|
|
|
|
core.warning(err.message);
|
|
|
|
}
|
|
|
|
});
|
2021-11-16 04:19:44 +00:00
|
|
|
if (inputs.file) {
|
|
|
|
args.push('--file', inputs.file);
|
2020-08-23 01:31:38 +00:00
|
|
|
}
|
2024-04-26 09:20:49 +00:00
|
|
|
if (!Build.hasLocalExporter(inputs.outputs) && !Build.hasTarExporter(inputs.outputs) && (inputs.platforms.length == 0 || (await toolkit.buildx.versionSatisfies('>=0.4.2')))) {
|
|
|
|
args.push('--iidfile', Build.getImageIDFilePath());
|
2020-10-19 19:17:06 +00:00
|
|
|
}
|
2023-02-20 10:11:15 +00:00
|
|
|
await Util.asyncForEach(inputs.labels, async label => {
|
2021-11-16 04:19:44 +00:00
|
|
|
args.push('--label', label);
|
2020-08-16 15:18:08 +00:00
|
|
|
});
|
2023-02-20 10:11:15 +00:00
|
|
|
await Util.asyncForEach(inputs.noCacheFilters, async noCacheFilter => {
|
2022-07-18 15:24:11 +00:00
|
|
|
args.push('--no-cache-filter', noCacheFilter);
|
|
|
|
});
|
2023-02-20 10:11:15 +00:00
|
|
|
await Util.asyncForEach(inputs.outputs, async output => {
|
2021-11-16 04:19:44 +00:00
|
|
|
args.push('--output', output);
|
2020-08-16 15:18:08 +00:00
|
|
|
});
|
2021-11-16 04:19:44 +00:00
|
|
|
if (inputs.platforms.length > 0) {
|
|
|
|
args.push('--platform', inputs.platforms.join(','));
|
|
|
|
}
|
2023-02-20 10:11:15 +00:00
|
|
|
if (await toolkit.buildx.versionSatisfies('>=0.10.0')) {
|
2024-03-26 14:31:37 +00:00
|
|
|
args.push(...(await getAttestArgs(inputs, toolkit)));
|
|
|
|
} else {
|
|
|
|
core.warning("Attestations are only supported by buildx >= 0.10.0; the inputs 'attests', 'provenance' and 'sbom' are ignored.");
|
2023-01-11 11:12:09 +00:00
|
|
|
}
|
2023-02-20 10:11:15 +00:00
|
|
|
await Util.asyncForEach(inputs.secrets, async secret => {
|
2020-11-17 20:38:45 +00:00
|
|
|
try {
|
2024-04-26 09:20:49 +00:00
|
|
|
args.push('--secret', Build.resolveSecretString(secret));
|
2021-02-15 09:08:19 +00:00
|
|
|
} catch (err) {
|
|
|
|
core.warning(err.message);
|
|
|
|
}
|
|
|
|
});
|
2023-02-20 10:11:15 +00:00
|
|
|
await Util.asyncForEach(inputs.secretFiles, async secretFile => {
|
2021-02-15 09:08:19 +00:00
|
|
|
try {
|
2024-04-26 09:20:49 +00:00
|
|
|
args.push('--secret', Build.resolveSecretFile(secretFile));
|
2020-11-17 20:38:45 +00:00
|
|
|
} catch (err) {
|
|
|
|
core.warning(err.message);
|
|
|
|
}
|
2020-09-02 08:07:11 +00:00
|
|
|
});
|
2024-04-26 09:20:49 +00:00
|
|
|
if (inputs.githubToken && !Build.hasGitAuthTokenSecret(inputs.secrets) && context.startsWith(Context.gitContext())) {
|
|
|
|
args.push('--secret', Build.resolveSecretString(`GIT_AUTH_TOKEN=${inputs.githubToken}`));
|
2020-09-22 18:49:18 +00:00
|
|
|
}
|
2021-11-16 06:19:27 +00:00
|
|
|
if (inputs.shmSize) {
|
|
|
|
args.push('--shm-size', inputs.shmSize);
|
|
|
|
}
|
2023-02-20 10:11:15 +00:00
|
|
|
await Util.asyncForEach(inputs.ssh, async ssh => {
|
2020-09-10 23:23:49 +00:00
|
|
|
args.push('--ssh', ssh);
|
|
|
|
});
|
2023-02-20 10:11:15 +00:00
|
|
|
await Util.asyncForEach(inputs.tags, async tag => {
|
2021-11-16 04:19:44 +00:00
|
|
|
args.push('--tag', tag);
|
|
|
|
});
|
|
|
|
if (inputs.target) {
|
|
|
|
args.push('--target', inputs.target);
|
2020-08-16 15:18:08 +00:00
|
|
|
}
|
2023-02-20 10:11:15 +00:00
|
|
|
await Util.asyncForEach(inputs.ulimit, async ulimit => {
|
2021-11-16 06:19:27 +00:00
|
|
|
args.push('--ulimit', ulimit);
|
|
|
|
});
|
2020-08-16 15:18:08 +00:00
|
|
|
return args;
|
|
|
|
}
|
|
|
|
|
2023-02-20 10:11:15 +00:00
|
|
|
async function getCommonArgs(inputs: Inputs, toolkit: Toolkit): Promise<Array<string>> {
|
2022-03-15 20:59:52 +00:00
|
|
|
const args: Array<string> = [];
|
2020-09-03 09:49:39 +00:00
|
|
|
if (inputs.builder) {
|
|
|
|
args.push('--builder', inputs.builder);
|
|
|
|
}
|
2020-08-17 20:18:15 +00:00
|
|
|
if (inputs.load) {
|
|
|
|
args.push('--load');
|
|
|
|
}
|
2023-02-20 10:11:15 +00:00
|
|
|
if (await toolkit.buildx.versionSatisfies('>=0.6.0')) {
|
2024-04-26 09:20:49 +00:00
|
|
|
args.push('--metadata-file', Build.getMetadataFilePath());
|
2021-11-16 04:19:44 +00:00
|
|
|
}
|
2021-04-06 12:49:15 +00:00
|
|
|
if (inputs.network) {
|
|
|
|
args.push('--network', inputs.network);
|
|
|
|
}
|
2021-11-16 04:19:44 +00:00
|
|
|
if (inputs.noCache) {
|
|
|
|
args.push('--no-cache');
|
|
|
|
}
|
|
|
|
if (inputs.pull) {
|
|
|
|
args.push('--pull');
|
|
|
|
}
|
2020-08-17 20:18:15 +00:00
|
|
|
if (inputs.push) {
|
|
|
|
args.push('--push');
|
|
|
|
}
|
|
|
|
return args;
|
|
|
|
}
|
2024-03-26 14:31:37 +00:00
|
|
|
|
|
|
|
async function getAttestArgs(inputs: Inputs, toolkit: Toolkit): Promise<Array<string>> {
|
|
|
|
const args: Array<string> = [];
|
|
|
|
|
|
|
|
// check if provenance attestation is set in attests input
|
|
|
|
let hasAttestProvenance = false;
|
|
|
|
await Util.asyncForEach(inputs.attests, async (attest: string) => {
|
2024-04-26 09:20:49 +00:00
|
|
|
if (Build.hasAttestationType('provenance', attest)) {
|
2024-03-26 14:31:37 +00:00
|
|
|
hasAttestProvenance = true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
let provenanceSet = false;
|
|
|
|
let sbomSet = false;
|
|
|
|
if (inputs.provenance) {
|
2024-04-26 09:20:49 +00:00
|
|
|
args.push('--attest', Build.resolveAttestationAttrs(`type=provenance,${inputs.provenance}`));
|
2024-03-26 14:31:37 +00:00
|
|
|
provenanceSet = true;
|
2024-04-26 09:20:49 +00:00
|
|
|
} else if (!hasAttestProvenance && (await toolkit.buildkit.versionSatisfies(inputs.builder, '>=0.11.0')) && !Build.hasDockerExporter(inputs.outputs, inputs.load)) {
|
2024-03-26 14:31:37 +00:00
|
|
|
// if provenance not specified in provenance or attests inputs and BuildKit
|
|
|
|
// version compatible for attestation, set default provenance. Also needs
|
|
|
|
// to make sure user doesn't want to explicitly load the image to docker.
|
|
|
|
if (GitHub.context.payload.repository?.private ?? false) {
|
|
|
|
// if this is a private repository, we set the default provenance
|
|
|
|
// attributes being set in buildx: https://github.com/docker/buildx/blob/fb27e3f919dcbf614d7126b10c2bc2d0b1927eb6/build/build.go#L603
|
2024-04-26 09:20:49 +00:00
|
|
|
args.push('--attest', `type=provenance,${Build.resolveProvenanceAttrs(`mode=min,inline-only=true`)}`);
|
2024-03-26 14:31:37 +00:00
|
|
|
} else {
|
|
|
|
// for a public repository, we set max provenance mode.
|
2024-04-26 09:20:49 +00:00
|
|
|
args.push('--attest', `type=provenance,${Build.resolveProvenanceAttrs(`mode=max`)}`);
|
2024-03-26 14:31:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (inputs.sbom) {
|
2024-04-26 09:20:49 +00:00
|
|
|
args.push('--attest', Build.resolveAttestationAttrs(`type=sbom,${inputs.sbom}`));
|
2024-03-26 14:31:37 +00:00
|
|
|
sbomSet = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// set attests but check if provenance or sbom types already set as
|
|
|
|
// provenance and sbom inputs take precedence over attests input.
|
|
|
|
await Util.asyncForEach(inputs.attests, async (attest: string) => {
|
2024-04-26 09:20:49 +00:00
|
|
|
if (!Build.hasAttestationType('provenance', attest) && !Build.hasAttestationType('sbom', attest)) {
|
|
|
|
args.push('--attest', Build.resolveAttestationAttrs(attest));
|
|
|
|
} else if (!provenanceSet && Build.hasAttestationType('provenance', attest)) {
|
|
|
|
args.push('--attest', Build.resolveProvenanceAttrs(attest));
|
|
|
|
} else if (!sbomSet && Build.hasAttestationType('sbom', attest)) {
|
2024-03-26 14:31:37 +00:00
|
|
|
args.push('--attest', attest);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return args;
|
|
|
|
}
|