From d94236b2c5644a1894526383dd5692d7b73f4042 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 3 Jun 2022 07:03:43 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 3.0.2 to 3.0.3 Bumps [actions/cache](https://github.com/actions/cache) from 3.0.2 to 3.0.3. - [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.0.2...v3.0.3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index b7d4311..7d9b27d 100644 --- a/action.yml +++ b/action.yml @@ -94,7 +94,7 @@ runs: - name: ♻️ Gatsby cache if: inputs.build != 'false' && steps.yarn-installed-packages.outputs.gatsby == 'true' - uses: actions/cache@v3.0.2 + uses: actions/cache@v3.0.3 id: gatsby-cache with: path: | @@ -106,7 +106,7 @@ runs: - name: ♻️ Storybook cache if: inputs.build != 'false' && steps.yarn-installed-packages.outputs.storybook == 'true' - uses: actions/cache@v3.0.2 + uses: actions/cache@v3.0.3 id: storybook-cache with: path: node_modules/.cache/storybook @@ -188,7 +188,7 @@ runs: - name: ♻️ Test cache if: inputs.checks == 'true' && inputs.test == 'true' - uses: actions/cache@v3.0.2 + uses: actions/cache@v3.0.3 with: path: ${{ steps.jest-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-test-${{ github.sha }}