From 498b6683a11748eff2bcc44909c04bc6cf584920 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Jan 2026 10:15:15 +0000 Subject: [PATCH] chore(ci)(deps): 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/e2e-demo.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/e2e-demo.yml b/.github/workflows/e2e-demo.yml index f07653d..67ebefc 100644 --- a/.github/workflows/e2e-demo.yml +++ b/.github/workflows/e2e-demo.yml @@ -76,7 +76,7 @@ jobs: cache-dependency-path: dashboard/package-lock.json - name: Cache cargo registry - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cargo/registry @@ -87,7 +87,7 @@ jobs: ${{ runner.os }}-e2e-cargo- - name: Cache node modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: dashboard/node_modules key: ${{ runner.os }}-node-${{ hashFiles('dashboard/package-lock.json') }} @@ -152,7 +152,7 @@ jobs: cache-dependency-path: dashboard/package-lock.json - name: Cache cargo registry - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cargo/registry @@ -163,7 +163,7 @@ jobs: ${{ runner.os }}-e2e-cargo- - name: Cache node modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: dashboard/node_modules key: ${{ runner.os }}-node-${{ hashFiles('dashboard/package-lock.json') }} @@ -222,7 +222,7 @@ jobs: cache-dependency-path: dashboard/package-lock.json - name: Cache cargo registry - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cargo/registry @@ -233,7 +233,7 @@ jobs: ${{ runner.os }}-e2e-cargo- - name: Cache node modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: dashboard/node_modules key: ${{ runner.os }}-node-${{ hashFiles('dashboard/package-lock.json') }}