Skip to content

Commit

Permalink
Bump actions/cache from 3 to 4 in /.github/actions/prepare-repository
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3...v4)

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

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] committed Aug 12, 2024
1 parent 2049c9f commit 91fdee4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/actions/prepare-repository/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ runs:
steps:
- uses: actions/checkout@v4
- name: restore_cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: v3-dependencies-{{ checksum "yarn.lock" }}
path: node_modules
Expand All @@ -21,13 +21,13 @@ runs:
shell: bash

- name: save_cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: v3-dependencies-{{ checksum "yarn.lock" }}

- name: restore_cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: v3-docs-dependencies-{{ checksum "docs/yarn.lock" }}
path: docs/node_modules
Expand All @@ -41,7 +41,7 @@ runs:
shell: bash

- name: save_cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: docs/node_modules
key: v3-docs-dependencies-{{ checksum "docs/yarn.lock" }}

0 comments on commit 91fdee4

Please sign in to comment.