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') }}