From f8c1a888af7f300a0984bcf5568a3c6de6974bc9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 12:26:47 +0000 Subject: [PATCH] (build deps): Bump actions/cache from 4 to 5 in the actions group Bumps the actions group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `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 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 ffe8340d47..5315575cd9 100644 --- a/.github/workflows/_prepare.yml +++ b/.github/workflows/_prepare.yml @@ -28,13 +28,13 @@ jobs: - name: Cache cake frosting id: cache-cake - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: run key: run-${{ runner.os }}-${{ hashFiles('./build/**') }} - name: Use cached tools id: cache-tools - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: tools key: tools-${{ runner.os }}-${{ hashFiles('./build/**') }} diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 1966b69e27..a7572aaacf 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@v4 + uses: actions/cache@v5 with: path: run key: run-${{ runner.os }}-${{ hashFiles('./build/**') }} diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 3c3aa34a9c..07ee84ba2a 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -44,14 +44,14 @@ jobs: - name: Cache cake frosting id: cache-cake - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: run key: run-${{ runner.os }}-${{ hashFiles('./build/**') }} - name: Use cached tools id: cache-tools - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: tools key: tools-${{ runner.os }}-${{ hashFiles('./build/**') }} @@ -65,7 +65,7 @@ jobs: - name: Cache Node Modules id: cache-node - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.cache-node-dir.outputs.dir }} key: node-${{ runner.os }}-${{ hashFiles('./package-lock.json') }}