From c9b94a785cfad6fbd94faabe27e85734357a6402 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 21:05:14 +0000 Subject: [PATCH] build(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/ci.yml | 10 +++++----- .github/workflows/publish.yml | 2 +- .github/workflows/translate-docs.yml | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a4f78065..1a905b95 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: with: bun-version: latest - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ~/.bun/install/cache key: bun-${{ runner.os }}-${{ hashFiles('bun.lockb') }} @@ -94,7 +94,7 @@ jobs: with: bun-version: latest - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ~/.bun/install/cache key: bun-${{ runner.os }}-${{ hashFiles('bun.lockb') }} @@ -127,7 +127,7 @@ jobs: with: bun-version: latest - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ~/.bun/install/cache key: bun-${{ runner.os }}-${{ hashFiles('bun.lockb') }} @@ -156,7 +156,7 @@ jobs: with: bun-version: latest - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ~/.bun/install/cache key: bun-${{ runner.os }}-${{ hashFiles('bun.lockb') }} @@ -201,7 +201,7 @@ jobs: with: bun-version: latest - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ~/.bun/install/cache key: bun-${{ runner.os }}-${{ hashFiles('bun.lockb') }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a61b8560..2fd02536 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -20,7 +20,7 @@ jobs: with: bun-version: latest - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ~/.bun/install/cache key: bun-${{ runner.os }}-${{ hashFiles('bun.lockb') }} diff --git a/.github/workflows/translate-docs.yml b/.github/workflows/translate-docs.yml index 0a8e573d..f4266078 100644 --- a/.github/workflows/translate-docs.yml +++ b/.github/workflows/translate-docs.yml @@ -60,7 +60,7 @@ jobs: with: bun-version: latest - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ~/.bun/install/cache key: bun-${{ runner.os }}-${{ hashFiles('bun.lockb') }} @@ -70,7 +70,7 @@ jobs: run: bun install --frozen-lockfile - name: Restore translation cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: scripts/translate-docs/.translation-cache.json key: translation-cache-${{ hashFiles('scripts/translate-docs/.translation-cache.json') }} @@ -164,7 +164,7 @@ jobs: " - name: Save translation cache - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: scripts/translate-docs/.translation-cache.json key: translation-cache-${{ hashFiles('scripts/translate-docs/.translation-cache.json') }}