From 18a09165cf38470e2d9ae2fe69477417913fda7f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 16:15:37 +0000 Subject: [PATCH] build(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 | 4 ++-- .github/workflows/prompt_smoke_ci.yml | 4 ++-- .github/workflows/release-artifacts.yml | 2 +- .github/workflows/tests.yml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aa38d65979..694aaf1670 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Cache pip - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/requirements.txt') }} @@ -31,7 +31,7 @@ jobs: ${{ runner.os }}-pip-${{ matrix.python-version }}- - name: Cache virtualenv - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .venv key: ${{ runner.os }}-venv-${{ matrix.python-version }}-${{ github.run_id }} diff --git a/.github/workflows/prompt_smoke_ci.yml b/.github/workflows/prompt_smoke_ci.yml index 4259cfbcdb..23b0697f35 100644 --- a/.github/workflows/prompt_smoke_ci.yml +++ b/.github/workflows/prompt_smoke_ci.yml @@ -34,7 +34,7 @@ jobs: with: python-version: '3.11' - name: Cache pip - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('ci-requirements.txt') }} @@ -65,7 +65,7 @@ jobs: with: python-version: '3.11' - name: Cache pip - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-full-${{ hashFiles('ci-requirements.txt') }} diff --git a/.github/workflows/release-artifacts.yml b/.github/workflows/release-artifacts.yml index 1a7e921b42..a4a86b8216 100644 --- a/.github/workflows/release-artifacts.yml +++ b/.github/workflows/release-artifacts.yml @@ -66,7 +66,7 @@ jobs: install: true - name: Set up docker layer caching - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d8e195956d..12f129db50 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -165,7 +165,7 @@ jobs: # Cribbed from # https://github.com/AustinScola/mypy-cache-github-action/blob/85ea4f2972abed39b33bd02c36e341b28ca59213/src/restore.ts#L10-L17 - name: Restore/persist mypy's cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | .mypy_cache