From 52b7b2326173b8634aba8b6f4cf5a55d98be8648 Mon Sep 17 00:00:00 2001 From: Bruno Domingues Date: Thu, 9 Oct 2025 17:52:35 -0300 Subject: [PATCH] SIENTIAPDE-1252: Update Python setup action and simplify dependency caching in quality gate workflow --- .github/workflows/quality-gate.yml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/workflows/quality-gate.yml b/.github/workflows/quality-gate.yml index 36ce79b..1708d52 100644 --- a/.github/workflows/quality-gate.yml +++ b/.github/workflows/quality-gate.yml @@ -193,17 +193,13 @@ jobs: df -h - name: 🔧 Setup Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.11" - - - name: 🗄️ Cache Python dependencies - uses: actions/cache@v3 - with: - path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt', 'requirements-dev.txt') }} - restore-keys: | - ${{ runner.os }}-pip- + cache: 'pip' + cache-dependency-path: | + requirements.txt + requirements-dev.txt - name: 📦 Install Dependencies run: |