test
Some checks failed
Build And Test / build-and-push (push) Failing after 17s

This commit is contained in:
2025-11-21 06:05:36 +00:00
parent 0380c41468
commit 38c94437ec

View File

@ -25,11 +25,19 @@ jobs:
with: with:
path: ./version path: ./version
- name: Install Docker #- name: Install Docker
# if: runner.os == 'Linux'
# run: |
# curl -fsSL https://get.docker.com -o get-docker.sh
# sh get-docker.sh
- name: Install Docker (Pinned version)
if: runner.os == 'Linux' if: runner.os == 'Linux'
run: | run: |
curl -fsSL https://get.docker.com -o get-docker.sh curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sh get-docker.sh add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu jammy stable"
apt-get update
apt-get install -y docker-ce=5:24.0.6-1~ubuntu.22.04 docker-ce-cli=5:24.0.6-1~ubuntu.22.04 containerd.io
- name: Set up Docker Buildx - name: Set up Docker Buildx
# uses: https://github.com/docker/setup-buildx-action@v1 # uses: https://github.com/docker/setup-buildx-action@v1