From 7333048d23abebb3d03c7e71c44e0fb582d2d687 Mon Sep 17 00:00:00 2001 From: cryptorugmunch Date: Fri, 3 Jul 2026 18:34:00 +0200 Subject: [PATCH] ci(forgejo): add ca-certificates to commitlint container --- .forgejo/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 8e04131..487d855 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -130,10 +130,10 @@ jobs: container: image: node:22-slim steps: - - name: Install git + - name: Install git and ca-certificates run: | apt-get update - apt-get install -y --no-install-recommends git + apt-get install -y --no-install-recommends git ca-certificates rm -rf /var/lib/apt/lists/* - uses: actions/checkout@v4 with: