From 80e51217a577726a1c033126170ec3b3799dbcd5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 13:02:45 +0000 Subject: [PATCH] =?UTF-8?q?:arrow=5Fup:=F0=9F=91=B7=20Bump=20actions/cache?= =?UTF-8?q?=20from=203=20to=205?= 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 5. - [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...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' 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 | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a180105..2de36dc 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@v5 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..7c10640 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@v5 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 b67b6ef..e50e983 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,7 +30,7 @@ jobs: - uses: actions/setup-python@v4 with: python-version: ${{ matrix.python }} - - uses: actions/cache@v3 + - uses: actions/cache@v5 with: path: ~/.cache/pip key: v1/${{ runner.os }}/pypi-${{matrix.python}}/${{ hashFiles('{requirements,development}.txt') }} @@ -41,7 +41,7 @@ jobs: - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - - uses: actions/cache@v3 + - uses: actions/cache@v5 with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} key: v1/${{ runner.os }}/node-${{ matrix.node }}/${{ hashFiles('**/yarn.lock') }}