diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c18e14ba..2a5c1dec 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,7 +26,7 @@ jobs: uses: abatilo/actions-poetry@v2.3.0 with: poetry-version: 1.5.1 - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: cache-deps with: path: ~/.cache/pip @@ -37,11 +37,11 @@ jobs: - name: Install dependencies run: poetry install -E session - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: .mypy_cache key: mypy-${{ matrix.python-version }} - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: .pytest_cache key: pytest-${{ matrix.python-version }} diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 08a05ebc..65d15852 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -24,7 +24,7 @@ jobs: uses: abatilo/actions-poetry@v2.3.0 with: poetry-version: 1.5.1 - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: cache-deps with: path: ~/.cache/pip @@ -34,11 +34,11 @@ jobs: - name: Install dependencies run: poetry install -E session - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: .mypy_cache key: mypy-${{ matrix.python-version }} - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: .pytest_cache key: pytest-${{ matrix.python-version }}