From 76f648e82af7126865c59dadede7a1e87bec431a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joe=20K=C3=BCng?= Date: Tue, 3 Mar 2026 13:00:14 +0100 Subject: [PATCH] fix(deploy): prova workflow --- .gitea/workflows/pr-checks.yaml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/pr-checks.yaml b/.gitea/workflows/pr-checks.yaml index ea416d2..a64c47a 100644 --- a/.gitea/workflows/pr-checks.yaml +++ b/.gitea/workflows/pr-checks.yaml @@ -77,21 +77,18 @@ jobs: with: fetch-depth: 0 - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: '3.12' - - - name: Install Semgrep + - name: Install Python and Semgrep shell: bash run: | - python -m pip install --upgrade pip - python -m pip install semgrep + apt-get update + apt-get install -y --no-install-recommends python3 python3-pip + python3 -m pip install --upgrade pip + python3 -m pip install semgrep - name: Run Semgrep (SAST) shell: bash run: | - semgrep --config auto --error \ + python3 -m semgrep --config auto --error \ --exclude frontend/node_modules \ --exclude backend/build \ backend/src frontend/src