From c3cde6745d4fe088b5af632fc88a7bccac80afb9 Mon Sep 17 00:00:00 2001 From: Echo Date: Sun, 17 May 2026 20:35:48 +0000 Subject: [PATCH] fix(ci): force IPv4 for rustup download on Alpine runner --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 9107bc7..87f4442 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -271,7 +271,7 @@ jobs: - name: Install Rust run: | apk add --no-cache curl bash - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal + curl --ipv4 --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal . "$HOME/.cargo/env" rustup target add x86_64-unknown-linux-musl echo "$HOME/.cargo/bin" >> "$GITHUB_PATH"