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
  • Loading branch information
dependabot[bot] committed Aug 12, 2024
1 parent 2049c9f commit b020976
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 b020976

Please sign in to comment.