From 862a97814856e048b0de0d73a664af9e5d4a29a2 Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Sun, 26 Jan 2025 09:41:42 -0500 Subject: [PATCH] feat: Updates apt update command to allow insecure repositories, which is failing in ci runs. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 53a6d00..be135c4 100644 --- a/action.yml +++ b/action.yml @@ -13,7 +13,7 @@ runs: && echo "deb [arch=all,$(dpkg --print-architecture) signed-by=/usr/share/keyrings/prebuilt-mpr-archive-keyring.gpg] \ https://proget.makedeb.org prebuilt-mpr $(lsb_release -cs)" \ | sudo tee /etc/apt/sources.list.d/prebuilt-mpr.list \ - && sudo apt update + && sudo apt update --allow-insecure-repositories - name: Setup just. shell: bash run: sudo apt install -y just