We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50400dd commit 436725fCopy full SHA for 436725f
1 file changed
lib/setup-docker.js
@@ -333,6 +333,15 @@ system_profiler SPHardwareDataType || true
333
core.warning(`Docker ${DOCKER_VERSION} not available on ubuntu ${OS}, will install latest docker version`);
334
}
335
336
+ core.startGroup('remove default moby');
337
+ await exec.exec('sudo', [
338
+ 'sh',
339
+ '-c',
340
+ "apt remove -y moby-buildx moby-cli moby-compose moby-containerd moby-engine moby-runc"
341
+ ]).catch(() => { });
342
+ core.endGroup();
343
+
344
345
message = 'install docker'
346
core.debug(message);
347
core.startGroup(message);
0 commit comments