From 38cfd20b4dad09aeee7e8f90f75a907d24de031b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Mar 2026 03:34:05 +0000 Subject: [PATCH] chore(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/llama_cpp.yml | 2 +- .github/workflows/stable-diffusion_cpp.yml | 4 ++-- .github/workflows/whisper_cpp.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/llama_cpp.yml b/.github/workflows/llama_cpp.yml index af5270e..53a6a9c 100644 --- a/.github/workflows/llama_cpp.yml +++ b/.github/workflows/llama_cpp.yml @@ -66,7 +66,7 @@ jobs: run: ${{ matrix.install_deps }} - name: Cache ccache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.ccache key: ccache-${{ matrix.name }}-${{ inputs.version }} diff --git a/.github/workflows/stable-diffusion_cpp.yml b/.github/workflows/stable-diffusion_cpp.yml index 1837a2b..a1caaab 100644 --- a/.github/workflows/stable-diffusion_cpp.yml +++ b/.github/workflows/stable-diffusion_cpp.yml @@ -99,7 +99,7 @@ jobs: - name: Cache ccache (Unix) if: runner.os != 'Windows' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.ccache key: ccache-${{ matrix.name }}-${{ inputs.version }} @@ -107,7 +107,7 @@ jobs: - name: Cache ccache (Windows) if: runner.os == 'Windows' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~\AppData\Local\ccache key: ccache-${{ matrix.name }}-${{ inputs.version }} diff --git a/.github/workflows/whisper_cpp.yml b/.github/workflows/whisper_cpp.yml index 0fb9cee..303f43c 100644 --- a/.github/workflows/whisper_cpp.yml +++ b/.github/workflows/whisper_cpp.yml @@ -64,7 +64,7 @@ jobs: run: ${{ matrix.install_deps }} - name: Cache ccache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.ccache key: ccache-${{ matrix.name }}-${{ inputs.version }}