Skip to content
This repository was archived by the owner on Aug 1, 2024. It is now read-only.

Commit ec81f92

Browse files
authored
fix: provisioning tests (#1056)
The provisioning tests were failing with the following error: > The following packages have unmet dependencies: > docker-ce : Depends: containerd.io (>= 1.6.4) This change attempts to fix the error by installing containerd.io.
1 parent 9579ab4 commit ec81f92

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/cli-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
4747
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal test"
4848
sudo apt update
49-
sudo apt install docker-ce
49+
sudo apt install docker-ce containerd.io
5050
docker version
5151
docker-compose --version
5252

.github/workflows/provisioning-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
4545
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal test"
4646
sudo apt update
47-
sudo apt install docker-ce
47+
sudo apt install docker-ce containerd.io
4848
docker version
4949
docker-compose --version
5050

0 commit comments

Comments
 (0)