Skip to content

Commit

Permalink
Bump actions/cache in the github_actions group across 1 directory
Browse files Browse the repository at this point in the history
Bumps the github_actions group with 1 update in the / directory: [actions/cache](https://github.com/actions/cache).


Updates `actions/cache` from 4.0.2 to 4.1.1
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v4.0.2...v4.1.1)

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

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Oct 14, 2024
1 parent 1c7e5bd commit 12fd175
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
run: yarn install --immutable

- name: Restore ESLint cache
uses: actions/cache/restore@v4.0.2
uses: actions/cache/restore@v4.1.1
with:
path: .cache/eslint
key: eslint-main-cache
Expand All @@ -69,13 +69,13 @@ jobs:
- name: Save ESLint cache
if: github.event_name == 'push'
uses: actions/cache/save@v4.0.2
uses: actions/cache/save@v4.1.1
with:
path: .cache/eslint
key: eslint-main-cache

- name: Restore prettier cache
uses: actions/cache/restore@v4.0.2
uses: actions/cache/restore@v4.1.1
with:
path: .cache/prettier
key: prettier-main-cache
Expand All @@ -94,7 +94,7 @@ jobs:
- name: Save prettier cache
if: github.event_name == 'push'
uses: actions/cache/save@v4.0.2
uses: actions/cache/save@v4.1.1
with:
path: .cache/prettier
key: prettier-main-cache
Expand Down

0 comments on commit 12fd175

Please sign in to comment.