From fe5d42845766c01166f1233d66f76d294c59ea05 Mon Sep 17 00:00:00 2001 From: taroj1205 Date: Sun, 22 Jun 2025 17:13:32 +1200 Subject: [PATCH] chore(ci): simplify unzip installation step in CI pipeline by removing sudo --- .github/workflows/ci-pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index e117189..541bab9 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -130,8 +130,8 @@ jobs: - name: Install unzip (required for Bun setup) run: | - sudo apt-get update - sudo apt-get install -y unzip + apt-get update + apt-get install -y unzip - name: Restore Turborepo Cache uses: actions/cache@v4