From 11f1997b4ff7be9682e31912a038eff056ebbc0d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 11 Dec 2025 22:10:01 +0000 Subject: [PATCH] ci(deps): bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 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/v4...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/ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2a738d4..5b913d4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: shell: bash - name: Cache pyenv folder - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.pyenv key: ${{ runner.os }}-pyenv-${{ env.PYTHON_VERSION }} @@ -30,7 +30,7 @@ jobs: - name: Cache venv folder id: cache-venv - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: venv key: ${{ runner.os }}-venv-${{ env.PYTHON_VERSION }}-${{ hashFiles('requirements.txt') }} @@ -40,7 +40,7 @@ jobs: - name: Cache pip packages id: cache-pip - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }} @@ -50,7 +50,7 @@ jobs: - name: Cache build Artifacts id: cache-build - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: build key: ${{ runner.os }}-build-${{ github.sha }} @@ -82,7 +82,7 @@ jobs: uses: actions/checkout@v4 - name: Restore pyenv cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.pyenv key: ${{ runner.os }}-pyenv-${{ env.PYTHON_VERSION }} @@ -90,7 +90,7 @@ jobs: ${{ runner.os }}-pyenv- - name: Restore venv cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: venv key: ${{ runner.os }}-venv-${{ env.PYTHON_VERSION }}-${{ hashFiles('requirements.txt') }} @@ -98,7 +98,7 @@ jobs: ${{ runner.os }}-venv-${{ env.PYTHON_VERSION }} - name: Restore pip packages cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }} @@ -106,7 +106,7 @@ jobs: ${{ runner.os }}-pip-${{ env.PYTHON_VERSION }}- - name: Restore build Artifacts cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: build key: ${{ runner.os }}-build-${{ github.sha }}