Skip to content
This repository has been archived by the owner on Mar 29, 2024. It is now read-only.

Commit

Permalink
chore(deps): bump actions/cache from 4.0.1 to 4.0.2
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 4.0.1 to 4.0.2.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v4.0.1...v4.0.2)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Mar 22, 2024
1 parent 35cce85 commit 561484f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ runs:
- name: ♻️ NX cache
if: inputs.build != 'false' && steps.yarn-installed-packages.outputs.nx == 'true'
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
path: node_modules/.cache/nx
key: ${{ runner.os }}-cache-nx-${{ github.sha }}
Expand All @@ -93,7 +93,7 @@ runs:
- name: ♻️ Prettier cache
if: inputs.checks == 'true' && inputs.lint == 'true' && steps.yarn-installed-packages.outputs.prettier == 'true'
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
path: node_modules/.cache/prettier
key: ${{ runner.os }}-cache-prettier-${{ github.sha }}
Expand All @@ -115,7 +115,7 @@ runs:

- name: ♻️ Gatsby cache
if: inputs.build != 'false' && steps.yarn-installed-packages.outputs.gatsby == 'true'
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
path: |
.cache
Expand All @@ -126,7 +126,7 @@ runs:
- name: ♻️ Storybook cache
if: inputs.build != 'false' && steps.yarn-installed-packages.outputs.storybook == 'true'
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
path: node_modules/.cache/storybook
key: ${{ runner.os }}-cache-storybook-${{ github.sha }}
Expand Down Expand Up @@ -186,7 +186,7 @@ runs:
- name: ♻️ Test cache
if: inputs.checks == 'true' && inputs.test == 'true'
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
path: ${{ steps.jest-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-test-${{ github.sha }}
Expand Down

0 comments on commit 561484f

Please sign in to comment.