From 79842ae39e1415170d69961d24b702aed6c5485c Mon Sep 17 00:00:00 2001 From: cryptorugmunch Date: Fri, 3 Jul 2026 18:25:38 +0200 Subject: [PATCH] ci(forgejo): install git in commitlint container --- .forgejo/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 27ae4ce..8e04131 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -130,6 +130,11 @@ jobs: container: image: node:22-slim steps: + - name: Install git + run: | + apt-get update + apt-get install -y --no-install-recommends git + rm -rf /var/lib/apt/lists/* - uses: actions/checkout@v4 with: fetch-depth: 0