From 5d36249771c797e23c9c1dc3b205a5109752ae5d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Apr 2026 22:48:31 +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/translate-docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/translate-docs.yml b/.github/workflows/translate-docs.yml index b0ca5ff2..237d9599 100644 --- a/.github/workflows/translate-docs.yml +++ b/.github/workflows/translate-docs.yml @@ -65,7 +65,7 @@ jobs: run: bun install --frozen-lockfile - name: Restore translation cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: scripts/translate-docs/.translation-cache.json key: translation-cache-${{ hashFiles('scripts/translate-docs/.translation-cache.json') }} @@ -159,7 +159,7 @@ jobs: " - name: Save translation cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: scripts/translate-docs/.translation-cache.json key: translation-cache-${{ hashFiles('scripts/translate-docs/.translation-cache.json') }}