From 50775186fb5df678ff3f953d754d4cf9cbcbf939 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 17 May 2026 21:17:59 +0200 Subject: [PATCH] =?UTF-8?q?fix(docs-ci):=20install=20nodejs=20in=20python?= =?UTF-8?q?=20image=20=E2=80=94=20actions/checkout=20needs=20node?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.7 (1M context) --- .forgejo/workflows/docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/docs.yml b/.forgejo/workflows/docs.yml index 9510224..f9d9995 100644 --- a/.forgejo/workflows/docs.yml +++ b/.forgejo/workflows/docs.yml @@ -15,10 +15,10 @@ jobs: volumes: - /srv/docs-makerfloss/html:/output steps: - - name: Install git for actions/checkout + - name: Install git, rsync, nodejs for actions/checkout run: | apt-get update -qq - apt-get install -y --no-install-recommends git rsync + apt-get install -y --no-install-recommends git rsync nodejs - name: Checkout repository uses: actions/checkout@v4