From db4fba49a81ae521d1d1d2becf38d84b270c99fc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 15:18:01 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 4.0.0 to 4.0.1 Bumps [actions/cache](https://github.com/actions/cache) from 4.0.0 to 4.0.1. - [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.0.0...v4.0.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/continuous-integration.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 76055b3..3f75d0d 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -170,7 +170,7 @@ jobs: - name: ♻️ NX cache if: fromJson(steps.has-installed-dependencies.outputs.installed-dependencies).nx == true - uses: actions/cache@v4.0.0 + uses: actions/cache@v4.0.1 with: path: node_modules/.cache/nx key: ${{ runner.os }}-cache-nx-${{ github.sha }} @@ -179,7 +179,7 @@ jobs: - name: ♻️ Prettier cache if: fromJson(steps.has-installed-dependencies.outputs.installed-dependencies).prettier == true - uses: actions/cache@v4.0.0 + uses: actions/cache@v4.0.1 with: path: node_modules/.cache/prettier key: ${{ runner.os }}-cache-prettier-${{ github.sha }} @@ -224,7 +224,7 @@ jobs: - name: ♻️ Gatsby cache if: fromJson(steps.has-installed-dependencies.outputs.installed-dependencies).gatsby == true - uses: actions/cache@v4.0.0 + uses: actions/cache@v4.0.1 with: path: | .cache @@ -235,7 +235,7 @@ jobs: - name: ♻️ Storybook cache if: fromJson(steps.has-installed-dependencies.outputs.installed-dependencies).storybook == true - uses: actions/cache@v4.0.0 + uses: actions/cache@v4.0.1 with: path: node_modules/.cache/storybook key: ${{ runner.os }}-cache-storybook-${{ github.sha }} @@ -311,7 +311,7 @@ jobs: - name: ♻️ Test cache if: steps.jest-cache-dir-path.outputs.dir - uses: actions/cache@v4.0.0 + uses: actions/cache@v4.0.1 with: path: ${{ steps.jest-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-test-${{ github.sha }}