From 4f14be8ca0c4cad1ebe7acb7b4303f30a7d18d01 Mon Sep 17 00:00:00 2001 From: jo Date: Mon, 28 Mar 2022 17:42:30 +0200 Subject: [PATCH] ci: run test container as root Should fix a permissions issue with github actions --- .github/workflows/tools.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/tools.yml b/.github/workflows/tools.yml index dabfd7616..e1294cd16 100644 --- a/.github/workflows/tools.yml +++ b/.github/workflows/tools.yml @@ -67,19 +67,7 @@ jobs: git \ python3 \ python3-pip \ - sudo \ $(cat packages.list) - - ARG USER=docker - ARG UID=1000 - ARG GID=1000 - - RUN adduser --disabled-password --uid=${UID} --gecos '' ${USER} && \ - adduser ${USER} sudo && \ - echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers - - USER ${UID}:${GID} - WORKDIR /home/${USER} EOF - name: Build and push