[TESTING] docker: Docker downgrade #11
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Arm64 testing | |
permissions: | |
contents: read | |
on: | |
pull_request: | |
concurrency: | |
group: | | |
${{ github.head_ref | |
|| github.run_id | |
}}-${{ github.workflow }}-request | |
cancel-in-progress: true | |
jobs: | |
arm64: | |
permissions: | |
contents: read | |
runs-on: envoy-x64-small | |
steps: | |
- run: | | |
sudo install -m 0755 -d /etc/apt/keyrings | |
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc | |
sudo chmod a+r /etc/apt/keyrings/docker.asc | |
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \ | |
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null | |
sudo apt-get update | |
# sudo apt show docker-ce -a | |
sudo apt-get install -y --allow-downgrades docker-ce=5:24.0.9-1~ubuntu.22.04~jammy docker-ce-cli=5:24.0.9-1~ubuntu.22.04~jammy | |
sudo systemctl restart docker | |
sudo docker --version |