From c40d747b12d007336b826f12835051ec716aa703 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 20 Jan 2026 06:03:01 +0000 Subject: [PATCH] ci: bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/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 ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yaml | 4 ++-- .github/workflows/docker-build.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e456b2105..d2f194deb 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -22,7 +22,7 @@ jobs: cache-dependency-path: package-lock.json - name: Cache node_modules id: cache-node-modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: key: cache-node-modules-${{ hashFiles('package-lock.json') }} path: | @@ -53,7 +53,7 @@ jobs: cache-dependency-path: package-lock.json - name: Cache node_modules id: cache-node-modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: key: cache-node-modules-${{ hashFiles('package-lock.json') }} path: | diff --git a/.github/workflows/docker-build.yaml b/.github/workflows/docker-build.yaml index ba62e6003..940d8e1c5 100644 --- a/.github/workflows/docker-build.yaml +++ b/.github/workflows/docker-build.yaml @@ -36,7 +36,7 @@ jobs: steps: - uses: actions/checkout@v3.5.2 - name: Cache Docker layers - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-v1-${{ github.sha }}