From 26c093d7d64001f6d71d60f2823535e25156cae0 Mon Sep 17 00:00:00 2001 From: Marcel Nijenhof Date: Sun, 12 Jan 2025 00:18:47 +0100 Subject: [PATCH] Correctie workflow: apt & dnf -y --- .gitea/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index d960081..816d755 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -28,7 +28,7 @@ jobs: /etc/yum.repos.d/*)" - name: Setup run: | - dnf install git nodejs \ + dnf install -y git nodejs \ python36 python38 python39 python3.11 python3.12 \ python3.11-pip python3.12-pip pip-3 install tox @@ -53,7 +53,7 @@ jobs: /etc/yum.repos.d/*)" - name: Setup run: | - dnf install git nodejs \ + dnf install -y git nodejs \ python39 python3.11 python3.12 \ python3-pip python3.11-pip python3.12-pip pip-3 install tox @@ -67,7 +67,7 @@ jobs: - name: Setup run: | apt update - apt install git nodejs python3 python3-pip tox + apt install -y git nodejs python3 python3-pip tox - name: Check out repository code uses: actions/checkout@v3 - name: Test