From 94953d881d4974a5c6b39b8cee9aacd8a82048e6 Mon Sep 17 00:00:00 2001 From: mctaylors Date: Sun, 1 Jun 2025 13:38:22 +0300 Subject: [PATCH] ci: use pip with --root-user-action to suppress warnings Signed-off-by: mctaylors --- .forgejo/workflows/build-push.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/build-push.yaml b/.forgejo/workflows/build-push.yaml index 763251d..248dd32 100644 --- a/.forgejo/workflows/build-push.yaml +++ b/.forgejo/workflows/build-push.yaml @@ -17,8 +17,8 @@ jobs: python-version: '3.13' - name: Install dependencies run: | - pip install -r requirements.txt - pip install pyinstaller + pip install --root-user-action ignore -r requirements.txt + pip install --root-user-action ignore pyinstaller - name: Build binary run: pyinstaller --onefile main.py - name: Set up SSH key