From cf86c929d51eb9777ede33ec2fa0fc7093b58da7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 12:13:03 +0000 Subject: [PATCH] ci(deps): bump actions/cache from 6.0.0 to 6.1.0 Bumps [actions/cache](https://github.com/actions/cache) from 6.0.0 to 6.1.0. - [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/v6.0.0...v6.1.0) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f086c98..7b2608f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -89,7 +89,7 @@ jobs: run: echo "result=${{ hashFiles('yarn.lock') }}" >>$GITHUB_OUTPUT - id: cache name: Cache dependencies - uses: actions/cache@v6.0.0 + uses: actions/cache@v6.1.0 with: key: ${{ steps.cache-key.outputs.result }} path: ${{ env.CACHE_PATH }} @@ -116,7 +116,7 @@ jobs: node-version-file: .nvmrc - id: cache name: Restore dependencies cache - uses: actions/cache@v6.0.0 + uses: actions/cache@v6.1.0 with: key: ${{ needs.preflight.outputs.cache-key }} path: ${{ env.CACHE_PATH }} @@ -143,7 +143,7 @@ jobs: node-version-file: .nvmrc - id: cache name: Restore dependencies cache - uses: actions/cache@v6.0.0 + uses: actions/cache@v6.1.0 with: key: ${{ needs.preflight.outputs.cache-key }} path: ${{ env.CACHE_PATH }} @@ -179,7 +179,7 @@ jobs: node-version-file: .nvmrc - id: cache name: Restore dependencies cache - uses: actions/cache@v6.0.0 + uses: actions/cache@v6.1.0 with: key: ${{ needs.preflight.outputs.cache-key }} path: ${{ env.CACHE_PATH }} @@ -229,7 +229,7 @@ jobs: node-version-file: .nvmrc - id: cache name: Restore dependencies cache - uses: actions/cache@v6.0.0 + uses: actions/cache@v6.1.0 with: key: ${{ needs.preflight.outputs.cache-key }} path: ${{ env.CACHE_PATH }} @@ -270,7 +270,7 @@ jobs: node-version: ${{ matrix.node-version }} - id: cache name: Restore dependencies cache - uses: actions/cache@v6.0.0 + uses: actions/cache@v6.1.0 with: key: ${{ needs.preflight.outputs.cache-key }} path: ${{ env.CACHE_PATH }} @@ -349,7 +349,7 @@ jobs: bun-version: ${{ matrix.bun-version }} - id: cache name: Restore dependencies cache - uses: actions/cache@v6.0.0 + uses: actions/cache@v6.1.0 with: key: ${{ needs.preflight.outputs.cache-key }} path: ${{ env.CACHE_PATH }} @@ -433,7 +433,7 @@ jobs: node-version-file: .nvmrc - id: cache name: Restore dependencies cache - uses: actions/cache@v6.0.0 + uses: actions/cache@v6.1.0 with: key: ${{ needs.preflight.outputs.cache-key }} path: ${{ env.CACHE_PATH }}