From 62ade4f3572880db590e63554433775530560766 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 24 Sep 2026 19:13:33 +0000 Subject: [PATCH] ci(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/branch-build.yml | 16 ++++++++-------- .github/workflows/dev-build.yml | 16 ++++++++-------- .github/workflows/release.yml | 16 ++++++++-------- 3 files changed, 24 insertions(+), 24 deletions(-) diff --git a/.github/workflows/branch-build.yml b/.github/workflows/branch-build.yml index ddd53b1f..08a39852 100644 --- a/.github/workflows/branch-build.yml +++ b/.github/workflows/branch-build.yml @@ -68,7 +68,7 @@ jobs: shell: bash - name: Restore Homebrew cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: | ~/Library/Caches/Homebrew/downloads @@ -87,7 +87,7 @@ jobs: - name: Save Homebrew cache if: always() - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: | ~/Library/Caches/Homebrew/downloads @@ -95,7 +95,7 @@ jobs: key: ${{ runner.os }}-brew-${{ steps.date.outputs.date }}-${{ hashFiles('**/build.sh') }} - name: Restore CCache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: ~/.ccache key: ${{ runner.os }}-ccache-${{ github.sha }} @@ -112,7 +112,7 @@ jobs: - name: Save CCache if: always() - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: ~/.ccache key: ${{ runner.os }}-ccache-${{ github.sha }} @@ -206,7 +206,7 @@ jobs: shell: bash - name: Restore Homebrew cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: | ~/.cache/Homebrew/downloads @@ -227,14 +227,14 @@ jobs: - name: Save Homebrew cache if: always() - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: | ~/.cache/Homebrew/downloads key: ${{ runner.os }}-brew-${{ steps.date.outputs.date }}-${{ hashFiles('**/build.sh') }} - name: Restore CCache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: ~/.ccache key: ${{ runner.os }}-ccache-${{ github.sha }} @@ -251,7 +251,7 @@ jobs: - name: Save CCache if: always() - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: ~/.ccache key: ${{ runner.os }}-ccache-${{ github.sha }} diff --git a/.github/workflows/dev-build.yml b/.github/workflows/dev-build.yml index 3b63c1f6..c863ab49 100644 --- a/.github/workflows/dev-build.yml +++ b/.github/workflows/dev-build.yml @@ -93,7 +93,7 @@ jobs: shell: bash - name: Restore Homebrew cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: | ~/Library/Caches/Homebrew/downloads @@ -112,7 +112,7 @@ jobs: - name: Save Homebrew cache if: always() - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: | ~/Library/Caches/Homebrew/downloads @@ -120,7 +120,7 @@ jobs: key: ${{ runner.os }}-brew-${{ steps.date.outputs.date }}-${{ hashFiles('**/build.sh') }} - name: Restore CCache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: ~/.ccache key: ${{ runner.os }}-ccache-${{ github.sha }} @@ -137,7 +137,7 @@ jobs: - name: Save CCache if: always() - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: ~/.ccache key: ${{ runner.os }}-ccache-${{ github.sha }} @@ -341,7 +341,7 @@ jobs: shell: bash - name: Restore Homebrew cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: | ~/.cache/Homebrew/downloads @@ -362,14 +362,14 @@ jobs: - name: Save Homebrew cache if: always() - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: | ~/.cache/Homebrew/downloads key: ${{ runner.os }}-brew-${{ steps.date.outputs.date }}-${{ hashFiles('**/build.sh') }} - name: Restore CCache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: ~/.ccache key: ${{ runner.os }}-ccache-${{ github.sha }} @@ -386,7 +386,7 @@ jobs: - name: Save CCache if: always() - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: ~/.ccache key: ${{ runner.os }}-ccache-${{ github.sha }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ed1f4f43..6ea39af0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -118,7 +118,7 @@ jobs: shell: bash - name: Restore Homebrew cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: | ~/Library/Caches/Homebrew/downloads @@ -137,7 +137,7 @@ jobs: - name: Save Homebrew cache if: always() - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: | ~/Library/Caches/Homebrew/downloads @@ -145,7 +145,7 @@ jobs: key: ${{ runner.os }}-brew-${{ steps.date.outputs.date }}-${{ hashFiles('**/build.sh') }} - name: Restore CCache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: ~/.ccache key: ${{ runner.os }}-ccache-${{ github.sha }} @@ -162,7 +162,7 @@ jobs: - name: Save CCache if: always() - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: ~/.ccache key: ${{ runner.os }}-ccache-${{ github.sha }} @@ -464,7 +464,7 @@ jobs: shell: bash - name: Restore Homebrew cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: | ~/.cache/Homebrew/downloads @@ -485,14 +485,14 @@ jobs: - name: Save Homebrew cache if: always() - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: | ~/.cache/Homebrew/downloads key: ${{ runner.os }}-brew-${{ steps.date.outputs.date }}-${{ hashFiles('**/build.sh') }} - name: Restore CCache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: ~/.ccache key: ${{ runner.os }}-ccache-${{ github.sha }} @@ -509,7 +509,7 @@ jobs: - name: Save CCache if: always() - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: ~/.ccache key: ${{ runner.os }}-ccache-${{ github.sha }}