From 6c81662e97fd23232191671d685a8e733ef12697 Mon Sep 17 00:00:00 2001 From: Zaytha Date: Sun, 6 Jul 2025 09:29:18 -0700 Subject: [PATCH] no sudo --- .gitea/workflows/godot-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/godot-ci.yml b/.gitea/workflows/godot-ci.yml index dff4094..b7e5072 100644 --- a/.gitea/workflows/godot-ci.yml +++ b/.gitea/workflows/godot-ci.yml @@ -93,10 +93,10 @@ jobs: # Need to install nodejs and git, and initalize git lfs for checkout - name: Install node.js and git run: | - sudo apt-get update - sudo apt-get install -y curl + apt-get update + apt-get install -y curl curl -fsSL https://deb.nodesource.com/setup_18.x | bash - - sudo apt-get install -y nodejs git git-lfs + apt-get install -y nodejs git git-lfs git lfs install - name: Checkout uses: https://gitea.com/actions/checkout@v4