From ff57d57fe9507090370df20d97c72a1fbc1351c4 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 17:09:04 +0000 Subject: [PATCH] fix: CI with noninteractive apt-get --- .gitea/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index dc8693a..3d6937e 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -10,8 +10,9 @@ jobs: steps: - name: Install Python run: | + export DEBIAN_FRONTEND=noninteractive apt-get update -qq - apt-get install -y -qq python3 python3-pip + apt-get install -y --no-install-recommends python3 python3-pip - name: Verify Python run: | python3 --version