From 02a83c7a161801a7e1bb80e33017a82a986cc327 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 19:17:32 +0000 Subject: [PATCH] chore(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/chocolatey.yml | 2 +- .github/workflows/ci.yml | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/chocolatey.yml b/.github/workflows/chocolatey.yml index 65888531..c3a66ee9 100644 --- a/.github/workflows/chocolatey.yml +++ b/.github/workflows/chocolatey.yml @@ -30,7 +30,7 @@ jobs: node-version: '18.17.1' - name: Cache bigger downloads - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache with: path: ${{ github.workspace }}/.cache diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f811ed7..a5da7ac9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,14 +34,14 @@ jobs: echo '::echo::off' shell: bash - name: Cache webui - uses: actions/cache@v4 + uses: actions/cache@v5 id: webui-cache with: path: assets/webui key: ${{ steps.read-webui-version.outputs.cid }} - name: Cache bigger downloads - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache if: steps.webui-cache.outputs.cache-hit != 'true' with: @@ -94,14 +94,14 @@ jobs: run: echo "cid=$(grep "build:webui:download" package.json | grep -Eio "bafy[a-z0-9]+")" >> $GITHUB_OUTPUT shell: bash - name: Cache webui - uses: actions/cache@v4 + uses: actions/cache@v5 id: webui-cache with: path: assets/webui key: ${{ steps.read-webui-version.outputs.cid }} - name: Cache bigger downloads - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache with: path: ${{ github.workspace }}/.cache @@ -164,14 +164,14 @@ jobs: run: echo "cid=$(grep "build:webui:download" package.json | grep -Eio "bafy[a-z0-9]+")" >> $GITHUB_OUTPUT shell: bash - name: Cache webui - uses: actions/cache@v4 + uses: actions/cache@v5 id: webui-cache with: path: assets/webui key: ${{ steps.read-webui-version.outputs.cid }} - name: Cache bigger downloads - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache with: path: ${{ github.workspace }}/.cache