diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 85a7ca60..7e8ddeba 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -78,14 +78,9 @@ jobs: uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - - - name: Cache pipenv packages - uses: actions/cache@v3 - with: - path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ hashFiles('**/Pipfile.lock') }} - restore-keys: | - ${{ runner.os }}-pip- + cache: 'pip' + cache-dependency-path: | + **/setup.py - name: Lint code if: ${{ matrix.python-version == 3.11 }}