From 43cb9bdb15efea26bf68a35ece788018dbf98e23 Mon Sep 17 00:00:00 2001 From: Ryan Hamilton Date: Thu, 12 Jun 2025 08:44:02 -0500 Subject: [PATCH] Remove unnecessary sudo from dependency installation in build-and-push workflow --- .gitea/workflows/build-and-push.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build-and-push.yaml b/.gitea/workflows/build-and-push.yaml index 73856c0..4a8715c 100644 --- a/.gitea/workflows/build-and-push.yaml +++ b/.gitea/workflows/build-and-push.yaml @@ -13,7 +13,7 @@ jobs: - name: Install Dependencies run: | - sudo apt-get update && sudo apt-get install -y curl jq docker.io + apt-get update && apt-get install -y curl jq docker.io - name: Get Forge Snapshot Tag id: get_tag