From 783f641896f3d357c1a5a9e8c2bc13690ab2acf9 Mon Sep 17 00:00:00 2001 From: ignis Date: Mon, 1 Jun 2026 05:45:31 +0000 Subject: [PATCH] ci: remove sudo from apt-get as container runs as root --- .forgejo/workflows/deploy-docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/deploy-docs.yml b/.forgejo/workflows/deploy-docs.yml index 482490b..eff8fc0 100644 --- a/.forgejo/workflows/deploy-docs.yml +++ b/.forgejo/workflows/deploy-docs.yml @@ -14,8 +14,8 @@ jobs: - name: Install Python & Graphviz run: | - sudo apt-get update - sudo apt-get install -y python3 python3-pip python3-venv graphviz + apt-get update + apt-get install -y python3 python3-pip python3-venv graphviz - name: Install Python Requirements & Compile Docs run: |