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 82cea5d commit 0b7a5aeCopy full SHA for 0b7a5ae
1 file changed
lib/setup-docker.js
@@ -343,6 +343,13 @@ system_profiler SPHardwareDataType || true
343
DOCKER_VERSION_STRING ? `docker-ce=${DOCKER_VERSION_STRING}` : 'docker-ce',
344
DOCKER_VERSION_STRING ? `docker-ce-cli=${DOCKER_VERSION_STRING}` : 'docker-ce-cli'
345
]);
346
+
347
+ await exec.exec('sudo', [
348
+ 'apt-get',
349
+ '-y',
350
+ 'install',
351
+ 'docker-compose-plugin',
352
+ ]).catch(() => { });
353
core.endGroup();
354
}
355
0 commit comments