Install Docker Compose v2 as a Docker CLI plugin (#2326)

Co-authored-by: Yusuke Kuoka <ykuoka@gmail.com>
This commit is contained in:
Milas Bowman
2023-03-28 21:40:10 -04:00
committed by GitHub
parent c8e3bb5ec3
commit 514b7da742
7 changed files with 47 additions and 13 deletions

View File

@@ -1081,6 +1081,17 @@ func installActionsWorkflow(t *testing.T, testName, runnerLabel, testResultCMNam
},
},
)
// Ensure both the alias and the full command work after
// https://github.com/actions/actions-runner-controller/pull/2326
steps = append(steps,
testing.Step{
Run: "docker-compose version",
},
testing.Step{
Run: "docker compose version",
},
)
}
steps = append(steps,