From 72cc09a8c71248dab9b2d6cf4455e46fa8a74e6c Mon Sep 17 00:00:00 2001 From: itqop Date: Sat, 19 Jul 2025 01:21:54 +0300 Subject: [PATCH] Fix CI libssl1.1 --- .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 514b410..88178a3 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -18,8 +18,8 @@ jobs: - name: Install OpenSSL 1.1 compatibility library run: | - apt-get update - apt-get install -y libssl1.1 + wget http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.22_amd64.deb + sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2.22_amd64.deb - name: Set up Python uses: actions/setup-python@v4