From 4dd5d06bcc3e540846e5324e2604b2f621a44993 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 Jun 2026 12:04:07 +0000 Subject: [PATCH] (build deps): bump actions/cache Bumps the actions group with 1 update in the /.github/workflows directory: [actions/cache](https://github.com/actions/cache). Updates `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 dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/_prepare.yml | 4 ++-- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/docs.yml | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/_prepare.yml b/.github/workflows/_prepare.yml index 680c5b4dc1..75b0750922 100644 --- a/.github/workflows/_prepare.yml +++ b/.github/workflows/_prepare.yml @@ -27,14 +27,14 @@ jobs: - name: Cache cake frosting id: cache-cake - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: run key: run-${{ runner.os }}-${{ hashFiles('./build/**') }} - name: Use cached tools id: cache-tools - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: tools key: tools-${{ runner.os }}-${{ hashFiles('./build/**') }} diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 00b84cf208..208fec3c83 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -62,7 +62,7 @@ jobs: - name: Cache cake frosting id: cache-cake - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: run key: run-${{ runner.os }}-${{ hashFiles('./build/**') }} diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 9d885daac9..cd7f68ce68 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -43,14 +43,14 @@ jobs: - name: Cache cake frosting id: cache-cake - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: run key: run-${{ runner.os }}-${{ hashFiles('./build/**') }} - name: Use cached tools id: cache-tools - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: tools key: tools-${{ runner.os }}-${{ hashFiles('./build/**') }} @@ -64,7 +64,7 @@ jobs: - name: Cache Node Modules id: cache-node - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ steps.cache-node-dir.outputs.dir }} key: node-${{ runner.os }}-${{ hashFiles('./package-lock.json') }}