From 50558d87d22b70881fbb7665df42a0c0bdd99d21 Mon Sep 17 00:00:00 2001 From: ahoneybun Date: Wed, 10 Dec 2025 18:09:58 -0700 Subject: [PATCH] Update .gitea/workflows/ci.yml update apt sources first --- .gitea/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 8a43efc..127fac3 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -10,7 +10,8 @@ jobs: steps: - name: Install rustup run: | - apt install curl + apt update -m + apt install -y curl curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh cargo build @@ -19,6 +20,7 @@ jobs: steps: - name: Install rustup run: | - apt install curl + apt update -m + apt install -y curl curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh cargo build