From 7a05943d2e9642d9df9cb487f7efe8466f4addb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20B=C5=99ezina?= Date: Thu, 22 Jun 2023 10:21:02 +0200 Subject: [PATCH] actions: workaround regression in podman https://github.com/actions/runner-images/issues/7753 --- actions/setup/action.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/actions/setup/action.yml b/actions/setup/action.yml index 41df79fa..6f74ac12 100644 --- a/actions/setup/action.yml +++ b/actions/setup/action.yml @@ -27,6 +27,12 @@ runs: set -ex sudo apt-get update sudo apt-get install -y podman docker-compose + + # Workaround https://github.com/actions/runner-images/issues/7753 + curl -O http://archive.ubuntu.com/ubuntu/pool/universe/g/golang-github-containernetworking-plugins/containernetworking-plugins_1.1.1+ds1-1_amd64.deb + sudo dpkg -i containernetworking-plugins_1.1.1+ds1-1_amd64.deb + rm --force containernetworking-plugins_1.1.1+ds1-1_amd64.deb + sudo systemctl enable --now podman.socket - name: Checkout sssd-ci-containers repository