From 0a1f1f120c825192ae54e971494159b5f96dd085 Mon Sep 17 00:00:00 2001 From: Prince D Rusweka Rwabongoya Date: Sat, 26 Apr 2025 03:23:53 -0400 Subject: [PATCH] Update backend-ci.yml --- .github/workflows/backend-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/backend-ci.yml b/.github/workflows/backend-ci.yml index c9faf67..2b9ecba 100644 --- a/.github/workflows/backend-ci.yml +++ b/.github/workflows/backend-ci.yml @@ -26,7 +26,7 @@ jobs: pip install -r requirements.txt - name: Cache Python dependencies - uses: actions/cache@v2.1.0 # Updated version + uses: actions/cache@v3 # Updated to v3 with: path: venv key: ${{ runner.os }}-python-${{ hashFiles('**/requirements.txt') }} @@ -72,7 +72,7 @@ jobs: pip install pytest-html - name: Cache Python dependencies - uses: actions/cache@v2.1.0 # Updated version + uses: actions/cache@v3 # Updated to v3 with: path: venv key: ${{ runner.os }}-python-${{ hashFiles('backend/requirements.txt') }} @@ -127,7 +127,7 @@ jobs: node-version: '20' - name: Cache node modules - uses: actions/cache@v2.1.0 # Updated version + uses: actions/cache@v3 # Updated to v3 with: path: frontend/node_modules key: ${{ runner.os }}-node-${{ hashFiles('frontend/package-lock.json') }}