From a8cfd2c42cd40d2b8c6a29659b94ae4c9ab7c6e8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 02:42:07 +0000 Subject: [PATCH] =?UTF-8?q?:arrow=5Fup:=F0=9F=91=B7=20Bump=20actions/cache?= =?UTF-8?q?=20from=203=20to=204?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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/lint.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a180105..eeedf95 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -9,7 +9,7 @@ jobs: - uses: actions/setup-python@v4 with: python-version: 3.11 - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ~/.cache/pip key: v1/${{ runner.os }}/pip/${{ hashFiles('{requirements,development}.txt') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1a6984c..d59586d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ jobs: - uses: actions/setup-python@v4 with: python-version: 3.x - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ~/.cache/pip key: v1/${{ runner.os }}/pip/${{ hashFiles('{requirements,development}.txt') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e417465..09b2503 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/setup-python@v4 with: python-version: ${{ matrix.python }} - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ~/.cache/pip key: v1/${{ runner.os }}/pypi-${{matrix.python}}/${{ hashFiles('{requirements,development}.txt') }}