Skip to content

Commit

Permalink
add allow downgrades to docker install in ci-cd
Browse files Browse the repository at this point in the history
  • Loading branch information
tclose committed Aug 2, 2024
1 parent fcfdef9 commit 43af6c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update
sudo apt-get install -y docker-ce=5:24.* docker-ce-cli=5:24.* containerd.io
sudo apt-get install -y --allow-downgrades docker-ce=5:24.* docker-ce-cli=5:24.* containerd.io
- name: Check Docker version
run: docker --version
- name: Unset header
Expand Down

0 comments on commit 43af6c8

Please sign in to comment.