chore(ci): simplify unzip installation step in CI pipeline by removing sudo

This commit is contained in:
taroj1205 2025-06-22 17:13:32 +12:00
parent 49f4b1b36f
commit fe5d428457
No known key found for this signature in database
GPG key ID: 0FCB6CFFE0981AB7

View file

@ -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