Skip to content

Commit

Permalink
chore(deps): bump actions/cache from 4.0.0 to 4.0.1
Browse files Browse the repository at this point in the history
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](actions/cache@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] <support@github.com>
  • Loading branch information
dependabot[bot] authored and neilime committed Mar 4, 2024
1 parent 298158d commit bd5f566
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand Down Expand Up @@ -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
Expand All @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down

0 comments on commit bd5f566

Please sign in to comment.