diff --git a/.github/workflows/repo_lint.yaml b/.github/workflows/repo_lint.yaml index d947061ef..2a25907e4 100644 --- a/.github/workflows/repo_lint.yaml +++ b/.github/workflows/repo_lint.yaml @@ -27,7 +27,7 @@ jobs: installer-parallel: true - name: Load cached venv id: cached-poetry-dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .venv key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('poetry.lock') }} @@ -35,7 +35,7 @@ jobs: run: SETUPTOOLS_ENABLE_FEATURES="legacy-editable" poetry install --no-interaction --with dev - name: Load cached pre-commit env id: cached-pre-commit - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pre-commit key: pre-commit-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('.pre-commit-config.yaml') }}