From 197a71d93ee1f217a53b01b0b2c4fec384bf5d46 Mon Sep 17 00:00:00 2001 From: Nikita Pozdniakov Date: Tue, 27 Jan 2026 15:17:45 +0300 Subject: [PATCH] Switch CI tool installation from apk to apt-get --- .gitea/workflows/ci.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index a04c081..31ef8e4 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -17,11 +17,8 @@ jobs: - name: Install tools (curl, jq) with timeout run: | set -eux - export APK_TIMEOUT=10 - export APK_RETRIES=1 - export APK_PROGRESS=plain - timeout 30s apk update -v - timeout 30s apk add --no-cache curl jq + timeout 30s apt-get update + timeout 30s apt-get install -y curl jq - name: Get Keycloak access token from Gitea secrets env: