From de6b3ba244676c283756556ba64316d50197ea3f Mon Sep 17 00:00:00 2001 From: itqop Date: Sat, 19 Jul 2025 01:17:31 +0300 Subject: [PATCH] Fix CI libssl1.1 --- .gitea/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 2e303c1..514b410 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -16,6 +16,11 @@ jobs: - name: Checkout repo uses: actions/checkout@v3 + - name: Install OpenSSL 1.1 compatibility library + run: | + apt-get update + apt-get install -y libssl1.1 + - name: Set up Python uses: actions/setup-python@v4 with: