From fa0f8ca099e76014f89e96e41aac3e0853de3aec Mon Sep 17 00:00:00 2001 From: Patrice Ferlet Date: Wed, 13 Aug 2025 09:52:50 +0200 Subject: [PATCH] fix(oci): use sudo to install --- .github/workflows/build-oci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-oci.yaml b/.github/workflows/build-oci.yaml index f6a883e..f7015aa 100644 --- a/.github/workflows/build-oci.yaml +++ b/.github/workflows/build-oci.yaml @@ -24,8 +24,8 @@ jobs: run: |- if ! comamnd -v buildah 2>/dev/null; then echo "Install Buildah" - apt-get update - apt-get install -y buildah + sudo apt-get update + sudo apt-get install -y buildah else echo "Buildah already installed" fi