From 413318e75c40eeb5047b00f4ee3cc69a52c8a62b Mon Sep 17 00:00:00 2001 From: ruinivist Date: Tue, 24 Feb 2026 00:14:20 +0000 Subject: [PATCH] ci: run as root for make install --- .github/workflows/lint.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 9a472b2..b6013a3 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -47,6 +47,7 @@ jobs: runs-on: ubuntu-latest container: image: invent-registry.kde.org/neon/docker-images/plasma:developer + options: --user root steps: - uses: actions/checkout@v4 @@ -60,7 +61,8 @@ jobs: run: npm i -g prettier@3.8.1 - name: Install make - run: apt-get install -y --no-install-recommends make + run: | + apt-get install -y --no-install-recommends make - name: Run lint checks run: make lint