From 56d5593b46b37ab605ce86bc8e2b509d97f5b1eb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 08:10:17 +0000 Subject: [PATCH] build(deps): bump actions/cache (#11755) Bumps [actions/cache](https://github.com/actions/cache) from 5.0.3 to 5.0.4. - [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/cdf6c1fa76f9f475f3d7449005a359c84ca0f306...668228422ae6a00e4ad889ee87cd7109ec5666a7) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .../actions/upload-node-modules-and-artifacts/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/upload-node-modules-and-artifacts/action.yml b/.github/actions/upload-node-modules-and-artifacts/action.yml index 7f644928d9..dd36b3566f 100644 --- a/.github/actions/upload-node-modules-and-artifacts/action.yml +++ b/.github/actions/upload-node-modules-and-artifacts/action.yml @@ -5,19 +5,19 @@ runs: using: "composite" steps: - name: Save dist to cache - uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 + uses: actions/cache/save@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 with: path: dist key: dist-${{ github.run_id }}-${{ github.run_attempt }} - name: Save nxcache to cache - uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 + uses: actions/cache/save@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 with: path: nxcache key: nxcache-${{ github.run_id }}-${{ github.run_attempt }} - name: Save node_modules to cache - uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 + uses: actions/cache/save@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 with: path: node_modules key: node-modules-${{ github.run_id }}-${{ github.run_attempt }}