Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/actions/setup-environment/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ runs:

- id: cache-npm
name: Cache NPM Global
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5
with:
path: ~/.npm
key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json', 'docs/package-lock.json') }}
Expand All @@ -28,7 +28,7 @@ runs:

- id: cache-jest
name: Cache Jest Transformations
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5
with:
path: .jest-cache
key: ${{ runner.os }}-jest-${{ hashFiles('package-lock.json') }}
Expand All @@ -37,7 +37,7 @@ runs:

- id: cache-docs
name: Cache Docusaurus Metadata
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5
with:
path: docs/.docusaurus
key: ${{ runner.os }}-docs-${{ hashFiles('docs/package-lock.json') }}
Expand Down
Loading