From 0eb283b901564566849738614d4950e74a12e87c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 03:33:14 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' 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 c782439..cb4d02e 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@v5 + uses: actions/cache@v6 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 9ca4c7f..ce57f40 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@v5 + uses: actions/cache@v6 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@v5 + uses: actions/cache@v6 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 06dfc53..4f47d16 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@v5 + uses: actions/cache@v6 with: path: ~/.ccache key: ccache-${{ matrix.name }}-${{ inputs.version }}