From 94d1058992d6d9d55bc1fa2958d5173526a7fbab Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 13:19:07 +0000 Subject: [PATCH] chore(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/docs.yml | 2 +- .github/workflows/tests.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 3b7716d..db9f958 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -30,7 +30,7 @@ jobs: with: fetch-depth: 0 - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ~/.bun/install/cache key: ${{ runner.os }}-latest-bun-${{ hashFiles('**/bun.lockb') }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 06cb070..e6c70f2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,7 +21,7 @@ jobs: bun: ['1.2.3', 'latest'] steps: - uses: actions/checkout@v4 - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ~/.bun/install/cache key: ${{ runner.os }}-${{ matrix.bun }}-bun-${{ hashFiles('**/bun.lockb') }} @@ -67,7 +67,7 @@ jobs: JWT_ALGORITHM: HS256 steps: - uses: actions/checkout@v4 - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ~/.bun/install/cache key: ${{ runner.os }}-${{ matrix.bun }}-bun-${{ hashFiles('**/bun.lockb') }} @@ -100,7 +100,7 @@ jobs: bun: ['1.2.3', 'latest'] steps: - uses: actions/checkout@v4 - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ~/.bun/install/cache key: ${{ runner.os }}-${{ matrix.bun }}-bun-${{ hashFiles('**/bun.lock') }}