From 205ea0b6e7786090367d9459297fbb8eab9183ca Mon Sep 17 00:00:00 2001 From: Tellsanguis Date: Mon, 29 Dec 2025 12:57:07 +0100 Subject: [PATCH] =?UTF-8?q?Retrait=20sudo=20pour=20compatibilit=C3=A9=20co?= =?UTF-8?q?ntainer=20Docker?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .forgejo/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index 2518814..17b988f 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -21,8 +21,8 @@ jobs: - name: Installation de BATS run: | - sudo apt-get update - sudo apt-get install -y bats + apt-get update + apt-get install -y bats - name: Afficher version BATS run: bats --version @@ -50,8 +50,8 @@ jobs: - name: Installation de ShellCheck run: | - sudo apt-get update - sudo apt-get install -y shellcheck + apt-get update + apt-get install -y shellcheck - name: Afficher version ShellCheck run: shellcheck --version