From e95c2e528cacbb6029cf1de5611e241dbc0ab153 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Sep 2026 05:02:55 +0000 Subject: [PATCH] ci: bump actions/cache from 4 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 4 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/v4...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/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..47ffed16e 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@v6 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@v6 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..cba4277d2 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@v6 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-v1-${{ github.sha }}