From 515b1ce70e02fbecfaed047287a42a614639ee6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20B=C5=99ezina?= Date: Wed, 21 Jun 2023 12:36:33 +0200 Subject: [PATCH] actions: do not install packages in setup There is a regression in podman that fails to create networks. The workaround is to avoid update of the podman package. We can skip the installation since both podman and docker-compose are available in the base image. See: https://github.com/actions/runner-images/issues/7753 --- actions/setup/action.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/actions/setup/action.yml b/actions/setup/action.yml index 41df79fa..471beb14 100644 --- a/actions/setup/action.yml +++ b/actions/setup/action.yml @@ -25,8 +25,6 @@ runs: shell: bash run: | set -ex - sudo apt-get update - sudo apt-get install -y podman docker-compose sudo systemctl enable --now podman.socket - name: Checkout sssd-ci-containers repository