From c97ee1ef43060cd954ef3b988fa501d5d9515606 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 23:32:41 +0000 Subject: [PATCH] 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/pull_request.yml | 4 ++-- .github/workflows/weekly.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 7da0ac1f228..e30a7c3f447 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -33,7 +33,7 @@ jobs: run: curl -LsSf https://astral.sh/uv/install.sh | sh - name: Restore uv cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: /tmp/.uv-cache key: uv-${{ runner.os }}-${{ hashFiles('uv.lock') }} @@ -42,7 +42,7 @@ jobs: uv-${{ runner.os }} - name: Restore Jira Status Cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: # If the path is changed in the validator or jira.yaml.template, it should be changed here too path: jira_status_cache.json diff --git a/.github/workflows/weekly.yml b/.github/workflows/weekly.yml index 978c351fc16..d84cbbe4fb0 100644 --- a/.github/workflows/weekly.yml +++ b/.github/workflows/weekly.yml @@ -34,7 +34,7 @@ jobs: run: curl -LsSf https://astral.sh/uv/install.sh | sh - name: Restore uv cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: /tmp/.uv-cache key: uv-${{ runner.os }}-${{ hashFiles('uv.lock') }} @@ -64,7 +64,7 @@ jobs: - name: Save Jira Status Cache if: always() - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: # If the path is changed in the validator or jira.yaml.template, it should be changed here too path: jira_status_cache.json