From adfd493884850e607ad948ef34c1b6b03b6cddf3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 28 Feb 2025 04:44:33 +0000 Subject: [PATCH] chore(deps): bump actions/cache Bumps the github-actions-dependencies group with 1 update in the /actions/dependencies-cache directory: [actions/cache](https://github.com/actions/cache). Updates `actions/cache` from 4.2.1 to 4.2.2 - [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.2.1...v4.2.2) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] --- actions/dependencies-cache/action.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/actions/dependencies-cache/action.yml b/actions/dependencies-cache/action.yml index 293e72d..e4060c3 100644 --- a/actions/dependencies-cache/action.yml +++ b/actions/dependencies-cache/action.yml @@ -29,7 +29,7 @@ runs: - name: ♻️ NX cache if: fromJson(steps.has-installed-dependencies.outputs.installed-dependencies).nx == true - uses: actions/cache@v4.2.1 + uses: actions/cache@v4.2.2 with: path: node_modules/.cache/nx key: ${{ runner.os }}-cache-nx-${{ github.sha }} @@ -38,7 +38,7 @@ runs: - name: ♻️ Prettier cache if: fromJson(steps.has-installed-dependencies.outputs.installed-dependencies).prettier == true - uses: actions/cache@v4.2.1 + uses: actions/cache@v4.2.2 with: path: node_modules/.cache/prettier key: ${{ runner.os }}-cache-prettier-${{ github.sha }} @@ -47,7 +47,7 @@ runs: - name: ♻️ Gatsby cache if: fromJson(steps.has-installed-dependencies.outputs.installed-dependencies).gatsby == true - uses: actions/cache@v4.2.1 + uses: actions/cache@v4.2.2 with: path: | .cache @@ -58,7 +58,7 @@ runs: - name: ♻️ Storybook cache if: fromJson(steps.has-installed-dependencies.outputs.installed-dependencies).storybook == true - uses: actions/cache@v4.2.1 + uses: actions/cache@v4.2.2 with: path: node_modules/.cache/storybook key: ${{ runner.os }}-cache-storybook-${{ github.sha }} @@ -75,7 +75,7 @@ runs: - name: ♻️ Test cache if: steps.jest-cache-dir-path.outputs.dir - uses: actions/cache@v4.2.1 + uses: actions/cache@v4.2.2 with: path: ${{ steps.jest-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-test-${{ github.sha }}