From 87d280edbd61f9cd6d96ba95fef9af77e373a40a Mon Sep 17 00:00:00 2001 From: Simon Larsen Date: Tue, 21 Jan 2025 13:26:03 +0000 Subject: [PATCH] feat: use sudo for apt-get update in compile workflow --- .github/workflows/compile.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index fc58e2cac3..15925c9465 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -189,7 +189,7 @@ jobs: - uses: actions/setup-node@v4 with: node-version: latest - - run: apt-get update + - run: sudo apt-get update - run: cd Common && npm install - run: cd E2E && npm install && npm run compile && npm run dep-check