From f70c540896e2cae8b1d999efd6d5aed5235bd976 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 01:04:19 +0000 Subject: [PATCH] Bump actions/cache from 3 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 3 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/v3...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 | 2 +- .github/workflows/webpack.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b2b56c7..56ce064 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -47,7 +47,7 @@ jobs: - name: Prepare Webpack bundle cache id: cache-webpack-bundles - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: ./dist key: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}-webpack-${{ inputs.os }} diff --git a/.github/workflows/webpack.yml b/.github/workflows/webpack.yml index 6ecec05..bc39d19 100644 --- a/.github/workflows/webpack.yml +++ b/.github/workflows/webpack.yml @@ -27,7 +27,7 @@ jobs: - name: Cache Webpack bundles id: cache-webpack-bundles - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: ./dist key: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}-webpack-${{ inputs.os }}