From fdd39b6816c82c54efedc7d5b490afbe73244a7b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 15:52:16 +0000 Subject: [PATCH] Bump actions/cache from 5.0.5 to 6.1.0 Bumps [actions/cache](https://github.com/actions/cache) from 5.0.5 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/v5.0.5...v6.1.0) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8870f03..8c981c6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,14 +21,14 @@ jobs: - name: Checkout code uses: actions/checkout@v7.0.0 - name: Cache library downloads - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 with: path: ~/downloads key: library-downloads-${{ hashFiles('native/build-config.sh') }} restore-keys: | library-downloads- - name: Cache configure results - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 with: path: ~/config-cache key: config-cache-macos-${{ hashFiles('native/build-*.sh') }} @@ -70,14 +70,14 @@ jobs: with: fetch-depth: 0 - name: Cache library downloads - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 with: path: ~/downloads key: library-downloads-${{ hashFiles('native/build-config.sh') }} restore-keys: | library-downloads- - name: Cache configure results - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 with: path: ~/config-cache key: config-cache-linux-${{ hashFiles('native/build-*.sh') }}