From a447e127ec870650729edba807b9c1d26da29aba Mon Sep 17 00:00:00 2001 From: db123 Date: Tue, 23 Jun 2026 20:38:28 +0330 Subject: [PATCH] CI: install git and ca-certificates for VCS module fetch --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 52d51e4..5809a6a 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -11,10 +11,10 @@ jobs: env: GOPROXY: direct steps: - - name: Install Node.js (required for GitHub Actions) + - name: Install system dependencies (Node.js, Git) run: | apt-get update - apt-get install -y nodejs + apt-get install -y nodejs git ca-certificates - uses: actions/checkout@v4 - uses: actions/setup-go@v5