From b5fb56c50ce8b0cc3e1eaf6bd4e39a41c3868ee3 Mon Sep 17 00:00:00 2001 From: AI Agent Date: Sat, 14 Mar 2026 18:25:33 -0600 Subject: [PATCH] Update smoke-tests.yml to install Rust using rustup instead of apt --- .gitea/workflows/smoke-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/smoke-tests.yml b/.gitea/workflows/smoke-tests.yml index c0bafdd..23c43b9 100644 --- a/.gitea/workflows/smoke-tests.yml +++ b/.gitea/workflows/smoke-tests.yml @@ -13,8 +13,8 @@ jobs: - name: Install Rust run: | - sudo apt update - sudo apt install -y cargo + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y + echo "$HOME/.cargo/bin" >> $GITHUB_PATH - name: Build run: cargo build