From eb403c6d6fd05c3fa576d99aa75d10ee5222bd30 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 09:03:02 +0000 Subject: [PATCH] :arrow_up: Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/python.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 183ef1f..a69857d 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -39,19 +39,19 @@ jobs: uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ matrix.pip-cache }} key: ${{ runner.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('**/poetry.lock') }} restore-keys: | ${{ runner.os }}-${{ matrix.python-version }}-pip- - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ matrix.poetry-cache }} key: ${{ runner.os }}-${{ matrix.python-version }}-poetry-${{ hashFiles('**/poetry.lock') }} restore-keys: | ${{ runner.os }}-${{ matrix.python-version }}-poetry- - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: .mypy_cache key: ${{ runner.os }}-${{ matrix.python-version }}-mypy-${{ hashFiles('**/poetry.lock') }}