From 145f1e9d4d150efa4ab44b131db7f7b607dc9eee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 18:03:51 +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/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3fb7a76f..774379ce 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,7 +41,7 @@ jobs: # cURL - name: Cache cURL id: cache-curl - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: "C:\\hostedtoolcache\\windows\\libcurl" key: "ukcp-curl-build" @@ -79,7 +79,7 @@ jobs: run: echo "::set-output name=dir::$(yarn cache dir)" - name: Load Yarn Cache - uses: actions/cache@v4 + uses: actions/cache@v5 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} @@ -88,7 +88,7 @@ jobs: ${{ runner.os }}-yarn- - name: Load Cached Node Modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: "**/node_modules" key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }} @@ -208,7 +208,7 @@ jobs: run: echo "::set-output name=dir::$(yarn cache dir)" - name: Load Yarn Cache - uses: actions/cache@v4 + uses: actions/cache@v5 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} @@ -217,7 +217,7 @@ jobs: ${{ runner.os }}-yarn- - name: Load Cached Node Modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: "**/node_modules" key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }}