From 9094ff0609addebe53ab6959e0fb8f1a0aa994c8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 05:34:23 +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/lint.yaml | 2 +- .github/workflows/tests-integration.yaml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 275f07918..c34a4702d 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -24,7 +24,7 @@ jobs: - name: Install pre-commit run: uv sync --group lint --extra all - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: .mypy_cache key: ${{ runner.os }}-mypy-${{ hashFiles('pyproject.toml') }} diff --git a/.github/workflows/tests-integration.yaml b/.github/workflows/tests-integration.yaml index 1badaec1f..f765c1e5c 100644 --- a/.github/workflows/tests-integration.yaml +++ b/.github/workflows/tests-integration.yaml @@ -156,7 +156,7 @@ jobs: run: | uv sync --group tests --extra all - - uses: actions/cache@v5 + - uses: actions/cache@v6 if: github.event.inputs.filter == '' || contains(github.event.inputs.filter, 'ollama') with: path: ~/.ollama @@ -164,14 +164,14 @@ jobs: restore-keys: | ${{ runner.os }}-ollama-models- - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ~/.llamafile key: ${{ runner.os }}-llamafile-${{ hashFiles('tests/conftest.py') }} restore-keys: | ${{ runner.os }}-llamafile- - - uses: actions/cache@v5 + - uses: actions/cache@v6 if: github.event.inputs.filter == '' || contains(github.event.inputs.filter, 'lmstudio') with: path: ~/.lmstudio