From 3fb0e9328f82c360b9782d54c10af7f637027cd4 Mon Sep 17 00:00:00 2001 From: Armin Schrenk Date: Mon, 16 Feb 2026 17:01:52 +0100 Subject: [PATCH] ensure curl only uses https --- .github/workflows/linux-makepkg.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linux-makepkg.yml b/.github/workflows/linux-makepkg.yml index 7b401bcc5..2dca01f57 100644 --- a/.github/workflows/linux-makepkg.yml +++ b/.github/workflows/linux-makepkg.yml @@ -101,7 +101,7 @@ jobs: id: sha256 run: | URL="https://github.com/cryptomator/cryptomator/archive/refs/tags/${TAG}.tar.gz" - curl --silent --fail-with-body -L -H "Accept: application/vnd.github+json" ${URL} --output cryptomator.tar.gz + curl --silent --fail-with-body --proto "=https" -L -H "Accept: application/vnd.github+json" ${URL} --output cryptomator.tar.gz TARBALL_SHA256=$(sha256sum cryptomator.tar.gz | cut -d ' ' -f1) echo "value=${TARBALL_SHA256}" >> "$GITHUB_OUTPUT" env: